@cryptotaxi247 / infra-1 / commits / 01910228

Move all objects into intelligent tiering

This has been cooking and is working correctly. Lets put everything in intelligent tiering -- not just 365 day old ones

Arian van Putten committed Jul 6, 2026 at 15:38 UTC 0191022837618265125ef8bca42fac616b753478
1 file changed +1 -4
terraform/cache.tf
+1 -4
@@ -32,10 +32,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "cache" {
32 }
33
34 transition {
35 - # TODO: Set this to 0 as we rely on intelligent tiering to move between
36 - # standard and infrequent access after 30 days.
37 - # but I want to test that this is working first.
38 - days = 365
35 + days = 0
36 storage_class = "INTELLIGENT_TIERING"
37 }
38 }