Skip to content

Commit

Permalink
removed wrapping of extrapolated values in policy
Browse files Browse the repository at this point in the history
  • Loading branch information
dms1981 committed Sep 20, 2024
1 parent 796c482 commit 10dcd00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/environments/core-logging/cortex.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ data "aws_iam_policy_document" "logging-bucket" {
test = "StringEquals"
variable = "aws:SourceOrgID"
values = [
"${data.aws_organizations_organization.root_account.id}"
data.aws_organizations_organization.root_account.id
]
}
}
Expand All @@ -77,7 +77,7 @@ data "aws_iam_policy_document" "logging-bucket" {
test = "StringEquals"
variable = "aws:SourceOrgID"
values = [
"${data.aws_organizations_organization.root_account.id}"
data.aws_organizations_organization.root_account.id
]
}
}
Expand Down

0 comments on commit 10dcd00

Please sign in to comment.