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

Commit

Permalink
Fix a bug in aws_s3_bucket_lifecycle_configuration.assetstore configu…
Browse files Browse the repository at this point in the history
…ration
  • Loading branch information
brianhelba committed Dec 1, 2022
1 parent 89ea92e commit c020d54
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 c020d54

Please sign in to comment.