From e000aeafcd975aa5dbb70c52c8fe2dfe8b556484 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Wed, 9 Jul 2025 12:14:49 -0400 Subject: [PATCH] chore(e2e): Fix bucket lifecycle warning (#5912) The provider was returning the following warning, which will become an error in future versions of the provider. No attribute specified when one (and only one) of [rule[0].filter,rules[0].prefix] is required --- enos/modules/aws_bucket/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/enos/modules/aws_bucket/main.tf b/enos/modules/aws_bucket/main.tf index d13faf4f1b..aa658fefc7 100644 --- a/enos/modules/aws_bucket/main.tf +++ b/enos/modules/aws_bucket/main.tf @@ -25,6 +25,7 @@ resource "aws_s3_bucket_lifecycle_configuration" "example" { days = 7 } status = "Enabled" + filter {} } }