Skip to content

Commit

Permalink
add 1.34 as allowed cluster version
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Oct 10, 2025
1 parent 5f7dd42 commit b750feb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ variable "cluster_version" {
description = "Kubernetes version to use for the EKS cluster"
type = string
validation {
condition = can(regex("^[0-9]+\\.[0-9]+$", var.cluster_version)) && contains(["1.31", "1.32", "1.33"], var.cluster_version)
error_message = "Cluster version must be in the format 'x.y' (e.g., '1.33') and must be one of: 1.31, 1.32, 1.33"
condition = can(regex("^[0-9]+\\.[0-9]+$", var.cluster_version)) && contains(["1.31", "1.32", "1.33", "1.34"], var.cluster_version)
error_message = "Cluster version must be in the format 'x.y' (e.g., '1.33') and must be one of: 1.31, 1.32, 1.33, 1.34"
}
}

Expand Down

0 comments on commit b750feb

Please sign in to comment.