Skip to content

Commit 2360538

Browse files
thxCodeshanewxy
authored andcommitted
fix: sensitive input
Signed-off-by: thxCode <[email protected]>
1 parent 9813889 commit 2360538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ resource "aws_elasticache_parameter_group" "target" {
137137
family = local.version_family_map[local.version]
138138

139139
dynamic "parameter" {
140-
for_each = local.parameters
140+
for_each = try(nonsensitive(local.parameters), local.parameters)
141141
content {
142142
name = parameter.key
143143
value = tostring(parameter.value)

0 commit comments

Comments
 (0)