Skip to content

Commit

Permalink
fix: Fix elastic version (#317)
Browse files Browse the repository at this point in the history
* operator 2.12

* 2.12 validation
  • Loading branch information
re-sh-cloud-arch authored Jul 2, 2024
1 parent 851bbb5 commit b95bd2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elastic_stack/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ variable "eck_version" {
type = string
description = "ECK (Elastic Cloud on Kubernetes) version, see: https://www.elastic.co/guide/en/cloud-on-k8s/index.html for futher versions"
validation {
condition = contains(["2.9", "2.6"], var.eck_version)
condition = contains(["2.12", "2.9", "2.6"], var.eck_version)
error_message = "The ECK version supported is only 2.9 or 2.6"
}
}
Expand Down

0 comments on commit b95bd2b

Please sign in to comment.