Skip to content

Commit 006e35f

Browse files
authored
feat: removed support for provisioning a lite plan COS instance as this plan is no longer available in IBM Cloud (#844)
1 parent 9f87d9d commit 006e35f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,10 +587,10 @@ variable "cos" {
587587
}
588588

589589
validation {
590-
error_message = "Plans for COS instances can only be `lite` or `standard`."
590+
error_message = "Plans for COS instances can only be `standard`."
591591
condition = length([
592592
for instance in var.cos :
593-
true if contains(["lite", "standard"], instance.plan)
593+
true if contains(["standard"], instance.plan)
594594
]) == length(var.cos)
595595
}
596596

0 commit comments

Comments
 (0)