File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,8 @@ resource "aws_s3_bucket" "default" {
173
173
# is required even if it empty, so we always implement `prefix` as a filter.
174
174
# OBSOLETE: prefix = try(rules.value.prefix, null)
175
175
status = try (rules. value . status , null )
176
+ # The `Delete marker replication` was disabled by default since empty filter created in Line 210, this needed to be "Enabled" to turn it on
177
+ delete_marker_replication_status = try (rules. value . delete_marker_replication_status , null )
176
178
177
179
destination {
178
180
# Prefer newer system of specifying bucket in rule, but maintain backward compatibility with
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ variable "s3_replication_rules" {
190
190
# priority = number
191
191
# prefix = string
192
192
# status = string
193
+ # delete_marker_replication_status = string
193
194
# # destination_bucket is specified here rather than inside the destination object
194
195
# # to make it easier to work with the Terraform type system and create a list of consistent type.
195
196
# destination_bucket = string # destination bucket ARN, overrides s3_replica_bucket_arn
You can’t perform that action at this time.
0 commit comments