Skip to content
Open
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
5 changes: 5 additions & 0 deletions infra/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,11 @@ variable "managed_node_groups" {
description = "Map of EKS managed node group definitions to create"
type = any
default = {}

validation {
condition = can(keys(var.managed_node_groups))
error_message = "managed_node_groups must be a map/object where each key is a managed node group name and each value is that node group's configuration."
}
}

variable "enable_ingress_nginx" {
Expand Down