Skip to content

v0.29.0

Choose a tag to compare

@cloudposse-releaser cloudposse-releaser released this 16 Jan 15:32
· 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 null values the same as empty strings

why

  • The original condition var.access_log_bucket_name == "" fails when the variable is null
  • Using coalesce(var.access_log_bucket_name, "") ensures both null and "" trigger the access log bucket name generation logic

references

  • Fixes the condition to properly support all variable states