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 1c84031 commit 34e627bCopy full SHA for 34e627b
terraform/sqs_id_sync.tf
@@ -1,7 +1,8 @@
1
resource "aws_sqs_queue" "id_sync_queue" {
2
name = "${local.short_prefix}-id-sync-queue"
3
kms_master_key_id = data.aws_kms_key.existing_id_sync_sqs_encryption_key.arn
4
- visibility_timeout_seconds = 60
+ # TODO: visibility_timeout_seconds must not be less than aws_lambda_function.id_sync_lambda_timeout
5
+ visibility_timeout_seconds = 360
6
redrive_policy = jsonencode({
7
deadLetterTargetArn = aws_sqs_queue.id_sync_dlq.arn
8
maxReceiveCount = 4
0 commit comments