We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f9c3e7 commit 856b3baCopy full SHA for 856b3ba
main.tf
@@ -77,8 +77,7 @@ locals {
77
# Always supply instance types via the node group, not the launch template,
78
# because node group supports up to 20 types but launch template does not.
79
# See https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateNodegroup.html#API_CreateNodegroup_RequestSyntax
80
- # Keep sorted so that change in order does not trigger replacement via random_pet
81
- instance_types = sort(var.instance_types)
+ instance_types = var.instance_types
82
ami_type = local.launch_template_ami == "" ? var.ami_type : null
83
capacity_type = var.capacity_type
84
labels = var.kubernetes_labels == null ? {} : var.kubernetes_labels
0 commit comments