Skip to content

Instantly share code, notes, and snippets.

@DanielDaCosta
Created June 20, 2020 16:57
Show Gist options
  • Save DanielDaCosta/87e2e5f9cecd7c1dfffb00bcf56b9476 to your computer and use it in GitHub Desktop.
Save DanielDaCosta/87e2e5f9cecd7c1dfffb00bcf56b9476 to your computer and use it in GitHub Desktop.
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