fix: No attribute specified when one (and only one) of [rule[0].filter,rule[0].prefix] is required
Arian van Putten committed
Jun 9, 2025 at 16:25 UTC
3f6bceb92c9c698079dafe5ea967029c2e1979af
1 file changed
+4
terraform/cache_log.tf
+4
@@ -22,6 +22,10 @@ resource "aws_s3_bucket_lifecycle_configuration" "cache_log" {
22
id = "rule-1"
23
status = "Enabled"
24
25
+ filter {
26
+ prefix = ""
27
+ }
28
+
29
expiration {
30
days = "30"
31
}