Skip to content

Commit 3fa6ff8

Browse files
authored
required_provider updated to use oracle/oci (#30)
1 parent f64a054 commit 3fa6ff8

File tree

7 files changed

+39
-30
lines changed

7 files changed

+39
-30
lines changed
Lines changed: 9 additions & 0 deletions
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+
}

modules/iam-dynamic-group/main.tf

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
// Copyright (c) 2018, 2021, Oracle and/or its affiliates.
2-
3-
terraform {
4-
required_version = ">= 0.12" // terraform version below 0.12 is not tested/supported with this module
5-
required_providers {
6-
oci = {
7-
version = ">= 3.27" // force downloading oci-provider compatible with terraform v0.12
8-
}
9-
}
10-
}
1+
// Copyright (c) 2018, 2022, Oracle and/or its affiliates.
112

123
########################
134
# Dynamic Group
Lines changed: 9 additions & 0 deletions
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+
}

modules/iam-group/main.tf

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
// Copyright (c) 2018, 2021, Oracle and/or its affiliates.
2-
3-
terraform {
4-
required_version = ">= 0.12" // terraform version below 0.12 is not tested/supported with this module
5-
required_providers {
6-
oci = {
7-
version = ">= 3.27" // force downloading oci-provider compatible with terraform v0.12
8-
}
9-
}
10-
}
1+
// Copyright (c) 2018, 2022, Oracle and/or its affiliates.
112

123
########################
134
# Group

modules/iam-group/versions.tf

Lines changed: 9 additions & 0 deletions
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+
}

modules/iam-user/main.tf

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
// Copyright (c) 2018, 2021, Oracle and/or its affiliates.
2-
3-
terraform {
4-
required_version = ">= 0.12" // terraform version below 0.12 is not tested/supported with this module
5-
required_providers {
6-
oci = {
7-
version = ">= 3.27" // force downloading oci-provider compatible with terraform v0.12
8-
}
9-
}
10-
}
1+
// Copyright (c) 2018, 2022, Oracle and/or its affiliates.
112

123
########################
134
# User

modules/iam-user/versions.tf

Lines changed: 9 additions & 0 deletions
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)