Skip to content
This repository was archived by the owner on Jul 7, 2021. It is now read-only.

Commit 5a91505

Browse files
authored
Merge pull request #74 from remind101/fix_missing_brackets
Need to be a list for awacs
2 parents 75cbdad + b943f85 commit 5a91505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacker_blueprints/sns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def queue_policy(sns_arn, sqs_arns):
3030
Effect="Allow",
3131
Principal=Principal("*"),
3232
Action=[awacs.sqs.SendMessage],
33-
Resource=arn,
33+
Resource=[arn],
3434
Condition=Condition(
3535
ArnEquals({"aws:SourceArn": sns_arn})
3636
)

0 commit comments

Comments
 (0)