Skip to content

Commit

Permalink
fix syntax for passthrough var
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 24, 2026
1 parent b4cb30e commit b2068fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions policies/sc-dbuser/policy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ data "aws_iam_policy_document" "inline" {
test = "StringEquals"
variable = "secretsmanager:ResourceTag/jbid"
values = [
"&{aws:PrincipalTag/jbid}"
"$${aws:PrincipalTag/jbid}"
]
}
# Name tag pattern includes the caller identifier.
condition {
test = "StringLike"
variable = "secretsmanager:ResourceTag/Name"
values = [
"*&{aws:PrincipalTag/jbid}*"
"*$${aws:PrincipalTag/jbid}*"
]
}
}
Expand Down

0 comments on commit b2068fe

Please sign in to comment.