Skip to content

Commit

Permalink
replaced required provider hashicorp/oci --> oracle/oci (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
snafuz authored Jun 4, 2022
1 parent 6c81f58 commit aedd7e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
11 changes: 2 additions & 9 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
# Copyright (c) 2018, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright (c) 2018, 2022 Oracle Corporation and/or affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

terraform {
required_version = ">= 0.12" // terraform version below 0.12 is not tested/supported with this module
required_providers {
oci = {
version = ">= 3.27" // force downloading oci-provider compatible with terraform v0.12
}
}
}


// Get all the Availability Domains for the region and default backup policies
data "oci_identity_availability_domains" "ad" {
Expand Down
9 changes: 9 additions & 0 deletions 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"
}

0 comments on commit aedd7e9

Please sign in to comment.