Skip to content

Commit

Permalink
fix: SID must only include alphanumeric characters (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorQuiroz authored Dec 20, 2024
1 parent a696f46 commit e4c5800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ data "aws_iam_policy_document" "this" {
for_each = var.enable_default_topic_policy ? [1] : []

content {
sid = "__default_statement_ID"
sid = "DefaultStatementID"
actions = [
"sns:Subscribe",
"sns:SetTopicAttributes",
Expand Down

0 comments on commit e4c5800

Please sign in to comment.