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 ac2ab94 commit ad05771Copy full SHA for ad05771
solutions/fully-configurable/variables.tf
@@ -213,7 +213,7 @@ variable "kms_endpoint_type" {
213
description = "The endpoint for communicating with the KMS instance. Possible values: `public`, `private.`"
214
default = "private"
215
validation {
216
- condition = can(regex("public|private", var.kms_endpoint_type))
+ condition = can(regex("^(public|private)$", var.kms_endpoint_type))
217
error_message = "The kms_endpoint_type value must be 'public' or 'private'."
218
}
219
0 commit comments