-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from oracle-terraform-modules/dev
Update submodule source.
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ provider "oci" { | |
|
||
module "iam_compartment" { | ||
source = "../modules/iam-compartment" | ||
#source = "oracle-terraform-modules/iam/oci/modules/iam-compartment" | ||
#source = "oracle-terraform-modules/iam/oci//modules/iam-compartment" | ||
tenancy_ocid = "${var.tenancy_ocid}" | ||
compartment_name = "tf_example_compartment" | ||
compartment_description = "compartment created by terraform" | ||
|
@@ -38,23 +38,23 @@ module "iam_compartment" { | |
|
||
module "iam_user1" { | ||
source = "../modules/iam-user" | ||
#source = "oracle-terraform-modules/iam/oci/modules/iam-user" | ||
#source = "oracle-terraform-modules/iam/oci//modules/iam-user" | ||
tenancy_ocid = "${var.tenancy_ocid}" | ||
user_name = "[email protected]" | ||
user_description = "user1 created by terraform" | ||
} | ||
|
||
module "iam_user2" { | ||
source = "../modules/iam-user" | ||
#source = "oracle-terraform-modules/iam/oci/modules/iam-user" | ||
#source = "oracle-terraform-modules/iam/oci//modules/iam-user" | ||
tenancy_ocid = "${var.tenancy_ocid}" | ||
user_name = "[email protected]" | ||
user_description = "user2 created by terraform" | ||
} | ||
|
||
module "iam_group" { | ||
source = "../modules/iam-group" | ||
#source = "oracle-terraform-modules/iam/oci/modules/iam-group" | ||
#source = "oracle-terraform-modules/iam/oci//modules/iam-group" | ||
tenancy_ocid = "${var.tenancy_ocid}" | ||
group_name = "tf_example_group" | ||
group_description = "group created by terraform" | ||
|
@@ -68,7 +68,7 @@ module "iam_group" { | |
|
||
module "iam_dynamic_group" { | ||
source = "../modules/iam-dynamic-group" | ||
#source = "oracle-terraform-modules/iam/oci/modules/iam-dynamic-group" | ||
#source = "oracle-terraform-modules/iam/oci//modules/iam-dynamic-group" | ||
tenancy_ocid = "${var.tenancy_ocid}" | ||
dynamic_group_name = "tf_example_dynamic_group" | ||
dynamic_group_description = "dynamic group created by terraform" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ This [Terraform module](https://www.terraform.io/docs/modules/index.html) allows | |
|
||
```hcl | ||
module "iam_user1" { | ||
source = "oracle-terraform-modules/iam/oci/modules/iam-user" | ||
source = "oracle-terraform-modules/iam/oci//modules/iam-user" | ||
tenancy_ocid = "${var.tenancy_ocid}" | ||
user_name = "[email protected]" | ||
user_description = "user1 created by terraform" | ||
|