Skip to content

Commit

Permalink
raise max receive count (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzlim08 committed Jun 6, 2024
1 parent 1e352bd commit 8df2ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/modules/swipe-sfn/notifications.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ resource "aws_sqs_queue" "sfn_notifications_queue" {
// Sent to dead-letter queue after maxReceiveCount tries
redrive_policy = lookup(each.value, "dead_letter", "true") == "true" ? jsonencode({
deadLetterTargetArn = aws_sqs_queue.sfn_notifications_queue_dead_letter[each.key].arn
maxReceiveCount = 3
maxReceiveCount = 30
}) : null

tags = var.tags
Expand Down

0 comments on commit 8df2ad6

Please sign in to comment.