Skip to content

Commit

Permalink
Create policy per file
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha committed Sep 29, 2024
1 parent 1f6dfdb commit a30c8b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
ids = [for k, v in aws_organizations_policy.this : v.id]
arns = [for k, v in aws_organizations_policy.this : v.arn]
ids = set([for k, v in aws_organizations_policy.this : v.id])
arns = set([for k, v in aws_organizations_policy.this : v.arn])
}

output "organizations_policy_id" {
Expand Down

0 comments on commit a30c8b8

Please sign in to comment.