From b948d30837b856d8985fb14e6d6ba07efdf51b2a Mon Sep 17 00:00:00 2001 From: Edd Almond <102675624+eddalmond1@users.noreply.github.com> Date: Fri, 6 Feb 2026 16:10:54 +0000 Subject: [PATCH] eli-649 upping expiry no of days to 1200 --- infrastructure/modules/bootstrap/tfstate/s3.tf | 2 +- infrastructure/modules/s3/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/modules/bootstrap/tfstate/s3.tf b/infrastructure/modules/bootstrap/tfstate/s3.tf index 658ed2d08..f17a435ee 100644 --- a/infrastructure/modules/bootstrap/tfstate/s3.tf +++ b/infrastructure/modules/bootstrap/tfstate/s3.tf @@ -80,7 +80,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "tfstate_bucket" { } expiration { - days = 90 + days = 1200 } noncurrent_version_transition { diff --git a/infrastructure/modules/s3/variables.tf b/infrastructure/modules/s3/variables.tf index 22830c426..9bde07620 100644 --- a/infrastructure/modules/s3/variables.tf +++ b/infrastructure/modules/s3/variables.tf @@ -4,7 +4,7 @@ variable "bucket_name" { } variable "bucket_expiration_days" { - default = 90 + default = 1200 description = "How long to keep bucket contents before expiring" type = number }