We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b2d91 commit 249fc87Copy full SHA for 249fc87
modules/directory-bucket/main.tf
@@ -61,7 +61,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "this" {
61
}
62
63
64
- # Max 1 block - filter - with one key argument or a single tag
+ # Max 1 block - filter - with one key argument
65
dynamic "filter" {
66
for_each = [for v in try(flatten([rule.value.filter]), []) : v if max(length(keys(v))) == 1]
67
@@ -72,7 +72,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "this" {
72
73
74
75
- # Max 1 block - filter - with more than one key arguments or multiple tags
+ # Max 1 block - filter - with more than one key arguments
76
77
for_each = [for v in try(flatten([rule.value.filter]), []) : v if max(length(keys(v))) > 1]
78
0 commit comments