Skip to content

Commit

Permalink
Auto Format
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudpossebot authored and max-lobur committed Jan 30, 2022
1 parent 2ecfc34 commit 8874e6f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,17 @@ resource "aws_s3_bucket" "default" {
for_each = try(rules.value.destination.metrics.status, "") == "Enabled" ? [1] : []

content {
status = "Enabled"
status = "Enabled"
event_threshold {
minutes = 15
}
}
}

dynamic "replication_time" {
for_each = try(rules.value.destination.metrics.status, "") == "Enabled" ? [1] : []

content {
minutes = 15
}
}
Expand Down

0 comments on commit 8874e6f

Please sign in to comment.