Skip to content

Commit 249fc87

Browse files
committed
remove comment about tags since tag filters are not supported in S3 Express lifecycle configurations
1 parent 76b2d91 commit 249fc87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/directory-bucket/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "this" {
6161
}
6262
}
6363

64-
# Max 1 block - filter - with one key argument or a single tag
64+
# Max 1 block - filter - with one key argument
6565
dynamic "filter" {
6666
for_each = [for v in try(flatten([rule.value.filter]), []) : v if max(length(keys(v))) == 1]
6767

@@ -72,7 +72,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "this" {
7272
}
7373
}
7474

75-
# Max 1 block - filter - with more than one key arguments or multiple tags
75+
# Max 1 block - filter - with more than one key arguments
7676
dynamic "filter" {
7777
for_each = [for v in try(flatten([rule.value.filter]), []) : v if max(length(keys(v))) > 1]
7878

0 commit comments

Comments
 (0)