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:
+4
-1
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user