v0.29.0
·
1 commit
to main
since this release
Support null value in access_log_bucket_name condition @johncblandii (#110)
## what- Updated the enabled condition for the access_log_bucket_name module to use
coalesce() - Now treats
nullvalues the same as empty strings
why
- The original condition
var.access_log_bucket_name == ""fails when the variable isnull - Using
coalesce(var.access_log_bucket_name, "")ensures bothnulland""trigger the access log bucket name generation logic
references
- Fixes the condition to properly support all variable states