Skip to content

Commit 89ba2f6

Browse files
committed
lowering retention
1 parent 0ed8cea commit 89ba2f6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

terraform/modules/cloudfoundry/buckets.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "logs-opensearch-archive" {
2727
include_require_encrypted_put_bucket_policy = "false"
2828
bucket = "logs-opensearch-${var.stack_prefix}"
2929
aws_partition = var.aws_partition
30-
expiration_days = 372 # 31 days * 12 months = 372 days
30+
expiration_days = 365 # 1 year
3131
acl = "private"
3232
object_ownership = "ObjectWriter"
3333
}
@@ -36,7 +36,7 @@ module "logs-opensearch-cf-audit-events" {
3636
source = "../s3_bucket/log_encrypted_bucket"
3737
bucket = "logs-opensearch-cf-audit-events-${var.stack_prefix}"
3838
aws_partition = var.aws_partition
39-
expiration_days = 372 # 31 days * 12 months = 372 days
39+
expiration_days = 365 # 1 year
4040
}
4141

4242
module "logs-opensearch-aws-metrics" {
@@ -50,5 +50,5 @@ module "logs-concourse-audit-events" {
5050
source = "../s3_bucket/log_encrypted_bucket"
5151
bucket = "logs-concourse-audit-events-${var.stack_prefix}"
5252
aws_partition = var.aws_partition
53-
expiration_days = 930 # 31 days * 30 months = 930 days
53+
expiration_days = 365 # 1 year
5454
}

0 commit comments

Comments
 (0)