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 d1bf2eb commit 5b23122Copy full SHA for 5b23122
modules/terraform-aci-config-passphrase/variables.tf
@@ -4,7 +4,7 @@ variable "config_passphrase" {
4
sensitive = true
5
6
validation {
7
- condition = can(regex("^.{0,32}$", var.config_passphrase))
8
- error_message = "Maximum characters: 32."
+ condition = can(regex("^.{16,32}$", var.config_passphrase))
+ error_message = "Allowed characters: any. Minimum characters: 16. Maximum characters: 32."
9
}
10
0 commit comments