Skip to content

Commit 64988e5

Browse files
committed
init: sqs_id_sync
1 parent 37cd059 commit 64988e5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

terraform/sqs_id_sync.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)