Skip to content

Commit da2fa04

Browse files
committed
terraform/oci: Constrain the maximum provider version
Version 7 was released recently. Do not go beyond version 6 for now. Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
1 parent e1467dd commit da2fa04

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

terraform/oci/provider.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
terraform {
2+
required_version = ">= 0.12.6"
3+
required_providers {
4+
oci = {
5+
source = "oracle/oci"
6+
version = "~> 6"
7+
}
8+
}
29
}
310

411
provider "oci" {
12+
auth = "APIKey"
513
config_file_profile = var.oci_config_file_profile
614
region = var.oci_region
715
}

0 commit comments

Comments
 (0)