v0.27.0
·
20 commits
to refs/heads/main
since this release
fix: address invalid count bug @RoseSecurity (#118)
## what and why- If a
data.aws_ssm_parameter.password.value
is passed to this module, it is tagged as a sensitive in the AWS provider, and that tag travels with the value all the way into the module. Because we don’t mark variablemaster_password
assensitive = true
, the value is off-limits to functions likelength()
or to meta-arguments likecount
. Terraform refuses to evaluate them → “invalid count argument”.