Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion terraform/cache.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ resource "aws_s3_bucket_lifecycle_configuration" "cache" {
}

transition {
# TODO: Set this to 0 as we rely on intelligent tiering to move between
# standard and infrequent access after 30 days.
# but I want to test that this is working first.
days = 365
storage_class = "STANDARD_IA"
storage_class = "INTELLIGENT_TIERING"
}
}
}
Expand Down