Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #35 from girder/s3-lifecycle
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba authored Dec 1, 2022
2 parents 89ea92e + c020d54 commit ee56a6e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions modules/assetstore/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ resource "aws_s3_bucket_lifecycle_configuration" "assetstore" {
bucket = aws_s3_bucket.assetstore.id

rule {
id = "abort-incomplete-multipart-upload"
status = "Enabled"
abort_incomplete_multipart_upload = 7
id = "abort-incomplete-multipart-upload"
status = "Enabled"
abort_incomplete_multipart_upload {
days_after_initiation = 7
}
}
}

Expand Down

0 comments on commit ee56a6e

Please sign in to comment.