Skip to content

Commit

Permalink
Fixing format
Browse files Browse the repository at this point in the history
  • Loading branch information
vladget committed Oct 10, 2024
1 parent ea1a9cf commit e43b181
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module "sns" {
}

resource "aws_sqs_queue" "sqs" {
name = "test-sqs"
name = "test-sqs"
fifo_queue = false
}

Expand All @@ -26,11 +26,11 @@ module "sns_with_subscriber" {

subscribers = {
"sqs" = {
protocol = "sqs"
endpoint = aws_sqs_queue.sqs.arn
protocol = "sqs"
endpoint = aws_sqs_queue.sqs.arn
raw_message_delivery = true
}
}
context = module.this.context
context = module.this.context
attributes = ["sqs", "subscriber"]
}

0 comments on commit e43b181

Please sign in to comment.