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 6df4dda commit ffffc7eCopy full SHA for ffffc7e
vars.tf
@@ -142,6 +142,10 @@ variable "availability_zones" {
142
variable "temporary_name_for_rotation" {
143
type = string
144
description = "Specifies the name of the temporary node pool used to cycle the default node pool for VM resizing."
145
+ validation {
146
+ condition = var.temporary_name_for_rotation != null
147
+ error_message = "The temporary_name_for_rotation value must not be null"
148
+ }
149
default = "rotationtmp"
150
}
151
0 commit comments