Skip to content

Instantly share code, notes, and snippets.

@amacal
Created November 6, 2020 16:22
Show Gist options
  • Save amacal/ff78c6727b4157818accc5c02a6eefd5 to your computer and use it in GitHub Desktop.
Save amacal/ff78c6727b4157818accc5c02a6eefd5 to your computer and use it in GitHub Desktop.
resource "aws_sns_topic" "orders" {
name = "orders-topic"
}
resource "aws_sqs_queue" "orders_to_process" {
name = "orders-to-process-queue"
receive_wait_time_seconds = 20
message_retention_seconds = 18400
}
resource "aws_sqs_queue" "orders_to_notify" {
name = "orders-to-notify-queue"
receive_wait_time_seconds = 20
message_retention_seconds = 18400
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment