We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de38556 commit ba78d69Copy full SHA for ba78d69
sqs_notifications.tf
@@ -33,7 +33,7 @@ data "aws_iam_policy_document" "sqs_policy" {
33
condition {
34
test = "ArnEquals"
35
variable = "aws:SourceArn"
36
- values = [join("", module.aws_s3_bucket.bucket_arn)]
+ values = [module.aws_s3_bucket.bucket_arn]
37
}
38
39
test = "StringEquals"
@@ -46,7 +46,7 @@ data "aws_iam_policy_document" "sqs_policy" {
46
47
resource "aws_s3_bucket_notification" "bucket_notification" {
48
count = local.sqs_notifications_enabled ? 1 : 0
49
- bucket = join("", module.aws_s3_bucket.bucket_id)
+ bucket = module.aws_s3_bucket.bucket_id
50
51
queue {
52
queue_arn = join("", aws_sqs_queue.notifications[*].arn)
0 commit comments