1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

fix: Correct variable defaults for ami_id and kubernetes_version (#3437)

This commit is contained in:
Bryant Biggs
2025-07-24 15:28:35 -05:00
committed by GitHub
parent 7efa43f11c
commit 8807e0bb55
5 changed files with 73 additions and 67 deletions
+4 -1
View File
@@ -785,7 +785,9 @@ variable "fargate_profiles" {
variable "self_managed_node_groups" {
description = "Map of self-managed node group definitions to create"
type = map(object({
create = optional(bool, true)
create = optional(bool)
kubernetes_version = optional(string)
# Autoscaling Group
create_autoscaling_group = optional(bool)
name = optional(string) # Will fall back to map key
@@ -1159,6 +1161,7 @@ variable "self_managed_node_groups" {
create_access_entry = optional(bool)
iam_role_arn = optional(string)
# Security group
vpc_security_group_ids = optional(list(string), [])
attach_cluster_primary_security_group = optional(bool, false)
create_security_group = optional(bool)
security_group_name = optional(string)