Skip to content

Commit

Permalink
set minimum version to Terraform 0.13 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyder authored Nov 26, 2020
1 parent 21e47d2 commit bce5b83
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module "vcn" {
source = "oracle-terraform-modules/vcn/oci"
version = "1.0.3"
version = "2.0.0-RC1"

# provider parameters
region = var.oci_base_provider.region
Expand All @@ -24,7 +24,7 @@ module "vcn" {

module "bastion" {
source = "oracle-terraform-modules/bastion/oci"
version = "1.0.7"
version = "2.0.0-RC1"

# provider identity parameters
api_fingerprint = var.oci_base_provider.api_fingerprint
Expand Down Expand Up @@ -68,7 +68,7 @@ module "bastion" {

module "operator" {
source = "oracle-terraform-modules/operator/oci"
version = "1.0.15"
version = "2.0.0-RC1"

# provider identity parameters
api_fingerprint = var.oci_base_provider.api_fingerprint
Expand Down
11 changes: 11 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
}
template = {
source = "hashicorp/template"
}
}
required_version = ">= 0.13"
}

0 comments on commit bce5b83

Please sign in to comment.