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.
lite
1 parent 9f87d9d commit 006e35fCopy full SHA for 006e35f
variables.tf
@@ -587,10 +587,10 @@ variable "cos" {
587
}
588
589
validation {
590
- error_message = "Plans for COS instances can only be `lite` or `standard`."
+ error_message = "Plans for COS instances can only be `standard`."
591
condition = length([
592
for instance in var.cos :
593
- true if contains(["lite", "standard"], instance.plan)
+ true if contains(["standard"], instance.plan)
594
]) == length(var.cos)
595
596
0 commit comments