Created
June 20, 2020 16:57
-
-
Save DanielDaCosta/87e2e5f9cecd7c1dfffb00bcf56b9476 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_sqs_queue" "queue" { | |
name = "apigateway-queue" | |
delay_seconds = 0 | |
max_message_size = 262144 | |
message_retention_seconds = 86400 | |
receive_wait_time_seconds = 10 | |
tags = { | |
Product = local.app_name | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment