Skip to content

Commit f0d5922

Browse files
committed
default secure value
1 parent e4111d1 commit f0d5922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "aws_ssm_parameter" "this" {
22
for_each = var.parameters
33

44
name = lookup(each.value, "name", null) == null ? each.key : lookup(each.value, "name")
5-
type = lookup(each.value, "type", null)
5+
type = lookup(each.value, "type", "SecureString")
66
value = lookup(each.value, "value", null)
77
description = lookup(each.value, "description", null)
88
allowed_pattern = lookup(each.value, "allowed_pattern", null)

0 commit comments

Comments
 (0)