We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37cd059 commit 64988e5Copy full SHA for 64988e5
terraform/sqs_id_sync.tf
@@ -0,0 +1,7 @@
1
+# FIFO SQS Queue
2
+resource "aws_sqs_queue" "id_sync_queue" {
3
+ name = "${local.short_prefix}-id-sync-queue.fifo" # Must end with .fifo
4
+ fifo_queue = true
5
+ content_based_deduplication = true # Optional, helps with deduplication
6
+ visibility_timeout_seconds = 60
7
+}
0 commit comments