We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9813889 commit 2360538Copy full SHA for 2360538
main.tf
@@ -137,7 +137,7 @@ resource "aws_elasticache_parameter_group" "target" {
137
family = local.version_family_map[local.version]
138
139
dynamic "parameter" {
140
- for_each = local.parameters
+ for_each = try(nonsensitive(local.parameters), local.parameters)
141
content {
142
name = parameter.key
143
value = tostring(parameter.value)
0 commit comments