Skip to content

Commit

Permalink
Merge pull request #10 from oracle-terraform-modules/alexng/master
Browse files Browse the repository at this point in the history
Remove syntax that results in lists within lists
  • Loading branch information
alexng-modules authored May 9, 2019
2 parents ecf943c + d194797 commit 9708ce6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/iam-dynamic-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ resource "oci_identity_policy" "this" {
name = "${var.policy_name}"
description = "${var.policy_description}"
compartment_id = "${var.policy_compartment_id}"
statements = ["${var.policy_statements}"]
statements = "${var.policy_statements}"
}
2 changes: 1 addition & 1 deletion modules/iam-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ resource "oci_identity_policy" "this" {
name = "${var.policy_name}"
description = "${var.policy_description}"
compartment_id = "${var.policy_compartment_id}"
statements = ["${var.policy_statements}"]
statements = "${var.policy_statements}"
}

0 comments on commit 9708ce6

Please sign in to comment.