Skip to content

Commit 0adb5f6

Browse files
authored
fix: Dynamic condition typo in repository_policy_statements logic (#60)
fix dynamic condition typo
1 parent 28b86e9 commit 0adb5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ data "aws_iam_policy_document" "repository" {
158158
}
159159

160160
dynamic "condition" {
161-
for_each = statement.value.conditions != null ? statement.value.condition : []
161+
for_each = statement.value.conditions != null ? statement.value.conditions : []
162162

163163
content {
164164
test = condition.value.test

0 commit comments

Comments
 (0)