Skip to content

Commit

Permalink
docs: Fix incorrect condition key in SQS example (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmuscat authored Mar 7, 2024
1 parent 69e1f91 commit 501f39c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,13 @@ module "sqs" {
}
]

condition = {
test = "ArnEquals"
variable = "aws:SourceArn"
values = [module.complete_sns.topic_arn]
}
conditions = [
{
test = "ArnEquals"
variable = "aws:SourceArn"
values = [module.complete_sns.topic_arn]
}
]
}
}

Expand Down

0 comments on commit 501f39c

Please sign in to comment.