We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9810de2 commit 98a8f13Copy full SHA for 98a8f13
terraform/modules/archival/main.tf
@@ -29,6 +29,15 @@ resource "aws_s3_bucket_versioning" "this" {
29
resource "aws_s3_bucket_lifecycle_configuration" "this" {
30
bucket = aws_s3_bucket.this.id
31
32
+ rule {
33
+ id = "AbortIncompleteMultipartUploads"
34
+ status = "Enabled"
35
+
36
+ abort_incomplete_multipart_upload {
37
+ days_after_initiation = 1
38
+ }
39
40
41
rule {
42
id = "intelligent-tiering-transition"
43
status = "Enabled"
0 commit comments