We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4f98f commit 512f63bCopy full SHA for 512f63b
2 files changed
infrastructure/modules/eventpub/sqs_queue_dlq.tf
@@ -2,4 +2,6 @@ resource "aws_sqs_queue" "dlq" {
2
name = "${local.csi}-dlq"
3
4
kms_master_key_id = var.kms_key_arn
5
+
6
+ message_retention_seconds = 1209600
7
}
infrastructure/modules/lambda/variables.tf
@@ -186,7 +186,7 @@ variable "sns_destination_kms_key" {
186
variable "lambda_dlq_message_retention_seconds" {
187
type = number
188
description = "The number of seconds to retain messages in the Lambda DLQ SQS queue"
189
- default = 86400
+ default = 1209600
190
191
192
variable "application_log_level" {
0 commit comments