Skip to content

Commit 5b23122

Browse files
authored
'config_passphrase' min length set to 16. (#312)
1 parent d1bf2eb commit 5b23122

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/terraform-aci-config-passphrase/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "config_passphrase" {
44
sensitive = true
55

66
validation {
7-
condition = can(regex("^.{0,32}$", var.config_passphrase))
8-
error_message = "Maximum characters: 32."
7+
condition = can(regex("^.{16,32}$", var.config_passphrase))
8+
error_message = "Allowed characters: any. Minimum characters: 16. Maximum characters: 32."
99
}
1010
}

0 commit comments

Comments
 (0)