Skip to content

Commit 7581526

Browse files
authored
Merge branch 'master' into feat-crates-io-replicate-entire-bucket-in-fallback
2 parents d74a5f1 + 6a3f3e6 commit 7581526

File tree

6 files changed

+17
-46
lines changed

6 files changed

+17
-46
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
73aff0e7a3e0d7cf94715a358b690682c7d6be5a
1+
f6b400a403563fd233dcaa58cc63c05c6fd40550

terragrunt/accounts/legacy/crates-io-staging/crates-io/.terraform.lock.hcl

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terragrunt/modules/crates-io-downloads-archive/README.md

-12
This file was deleted.

terragrunt/modules/crates-io-downloads-archive/main.tf

-28
This file was deleted.

terragrunt/modules/crates-io-downloads-archive/variables.tf

-4
This file was deleted.

terragrunt/modules/crates-io/s3-static.tf

+12
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ resource "aws_s3_bucket" "static" {
3131
}
3232
}
3333

34+
// Delete old RSS feeds as eagerly as possible, without deleting live ones.
35+
lifecycle_rule {
36+
id = "purge-old-rss-feeds"
37+
enabled = true
38+
prefix = "rss/"
39+
40+
abort_incomplete_multipart_upload_days = 1
41+
noncurrent_version_expiration {
42+
days = 1
43+
}
44+
}
45+
3446
lifecycle {
3547
ignore_changes = [
3648
replication_configuration,

0 commit comments

Comments
 (0)