Skip to content

Commit

Permalink
Replaced required provider hashicorp/oci --> oracle/oci (#86)
Browse files Browse the repository at this point in the history
* replaced required provider hashicorp/oci --> oracle/oci

* replaced required provider hashicorp/oci --> oracle/oci
  • Loading branch information
snafuz authored Mar 22, 2022
1 parent 2d8ea92 commit b14e6d9
Show file tree
Hide file tree
Showing 11 changed files with 95 additions and 16 deletions.
23 changes: 23 additions & 0 deletions examples/custom_route_rules/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/custom_route_rules/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/drg/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand Down
23 changes: 23 additions & 0 deletions examples/hub-spoke/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/hub-spoke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand Down
26 changes: 25 additions & 1 deletion examples/module_composition/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/module_composition/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand All @@ -17,7 +17,7 @@ terraform {

module "vcn" {

source = "../../../"
source = "../../"
# to use the terraform registry version comment the previous line and uncomment the 2 lines below
# source = "oracle-terraform-modules/vcn/oci"
# version = "specify_version_number"
Expand Down
4 changes: 2 additions & 2 deletions examples/rpc/rpc_from_drg_module/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/rpc/rpc_from_vcn_module/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand Down
9 changes: 9 additions & 0 deletions modules/drg/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
terraform {
required_providers {
oci = {
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
}
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">=4.41.0"
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
Expand Down

0 comments on commit b14e6d9

Please sign in to comment.