Skip to content

Commit

Permalink
fix- tf-checks error in _example/website-s3/
Browse files Browse the repository at this point in the history
  • Loading branch information
h1manshu98 committed Dec 29, 2023
1 parent e558298 commit 6db1ab0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions _example/website-s3/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ module "s3_bucket" {
lifecycle_configuration_rules = [
{
id = "log"
prefix = null
enabled = true
tags = { "temp" : "true" }
enable_glacier_transition = false
enable_deeparchive_transition = false
enable_standard_ia_transition = false
Expand All @@ -67,12 +65,14 @@ module "s3_bucket" {
glacier_transition_days = 0
deeparchive_transition_days = 0
expiration_days = 365
filter = {
prefix = null
tags = { "temp" : "true" }
}
},
{
id = "log1"
prefix = null
enabled = true
tags = {}
enable_glacier_transition = false
enable_deeparchive_transition = false
enable_standard_ia_transition = false
Expand All @@ -86,6 +86,10 @@ module "s3_bucket" {
glacier_transition_days = 0
deeparchive_transition_days = 0
expiration_days = 365
filter = {
prefix = null
tags = {}
}
}
]

Expand Down

0 comments on commit 6db1ab0

Please sign in to comment.