Skip to content

Commit aedd7e9

Browse files
authored
replaced required provider hashicorp/oci --> oracle/oci (#99)
1 parent 6c81f58 commit aedd7e9

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

main.tf

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
1-
# Copyright (c) 2018, 2021 Oracle Corporation and/or affiliates. All rights reserved.
1+
# Copyright (c) 2018, 2022 Oracle Corporation and/or affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
33

4-
terraform {
5-
required_version = ">= 0.12" // terraform version below 0.12 is not tested/supported with this module
6-
required_providers {
7-
oci = {
8-
version = ">= 3.27" // force downloading oci-provider compatible with terraform v0.12
9-
}
10-
}
11-
}
4+
125

136
// Get all the Availability Domains for the region and default backup policies
147
data "oci_identity_availability_domains" "ad" {

versions.tf

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
terraform {
2+
required_providers {
3+
oci = {
4+
source = "oracle/oci"
5+
version = ">=4.67.3"
6+
}
7+
}
8+
required_version = ">= 1.0.0"
9+
}

0 commit comments

Comments
 (0)