Skip to content

Commit 02b86ef

Browse files
authored
fix: Provider changed from hashicorp/oci to oracle/oci (#65)
1 parent ea54d22 commit 02b86ef

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

terraform.tfvars.example

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,11 @@ freeform_tags = {
3030
role = "operator"
3131
}
3232

33-
operating_system_version = "8"
34-
3533
operator_image_id = "Oracle"
3634

3735
enable_operator_instance_principal = true
3836

39-
operating_os_version = "8"
37+
operator_os_version = "8"
4038

4139
operator_shape = {
4240
# shape = "VM.Standard.E2.2"

versions.tf

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
terraform {
55
required_providers {
66
oci = {
7-
source = "hashicorp/oci"
7+
source = "oracle/oci"
8+
version = ">= 4.67.3"
89
# pass oci home region provider explicitly for identity operations
9-
configuration_aliases = [ oci.home ]
10+
configuration_aliases = [oci.home]
1011
}
1112
}
1213
required_version = ">= 1.0.0"

0 commit comments

Comments
 (0)