From b06f1c8a55c7205757d43ccf176d9cd7358b12f8 Mon Sep 17 00:00:00 2001 From: Ankit Deo <56859072+ankit11088@users.noreply.github.com> Date: Wed, 4 Dec 2024 08:22:32 -0700 Subject: [PATCH] Update variables.tf with log retention days as 30 Logs should have an expiry and shouldn't be there for ever. --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 1d5cb88..63f5514 100644 --- a/variables.tf +++ b/variables.tf @@ -76,7 +76,7 @@ variable "invoke" { variable "logs_retention_days" { type = number description = "Lambda function logs retentions in days" - default = null + default = 30 } variable "logs_kms_key_id" {