Skip to content

Commit

Permalink
feat: use S3 lifecycle rule V2 (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
nozaq committed Apr 16, 2022
1 parent c695553 commit 2b471bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/secure-bucket/main.tf
Expand Up @@ -47,7 +47,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "access_log" {
id = "auto-archive"
status = "Enabled"

prefix = "/"
filter {}

transition {
days = var.lifecycle_glacier_transition_days
Expand Down Expand Up @@ -114,7 +114,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "content" {
id = "auto-archive"
status = "Enabled"

prefix = "/"
filter {}

transition {
days = var.lifecycle_glacier_transition_days
Expand Down

0 comments on commit 2b471bd

Please sign in to comment.