Skip to content

Instantly share code, notes, and snippets.

@jcdan3
Last active November 27, 2021 04:21
Show Gist options
  • Save jcdan3/c098b18c45cde905f55dfd5efe1495db to your computer and use it in GitHub Desktop.
Save jcdan3/c098b18c45cde905f55dfd5efe1495db to your computer and use it in GitHub Desktop.
A simple SQS with Terraform
resource "aws_sqs_queue" "terraform_queue" {
name = "terraform-example-queue"
delay_seconds = 90
max_message_size = 2048
message_retention_seconds = 86400
receive_wait_time_seconds = 10
tags = {
Environment = "production"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment