Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@ variable "cluster_name" {
variable "cluster_version" {
description = "EKS Cluster Version"
type = string
default = "1.30"

validation {
condition = try(tonumber(var.cluster_version) < 1.31, false)
error_message = "EKS Cluster Version 1.31 is not supported by this module. Please use a version less than 1.31"
}
default = "1.31"
}

variable "cluster_enabled_log_types" {
Expand Down
Loading