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

fix: Allow instance_requirements to be set in self-managed node groups (#3455)

This commit is contained in:
Bryant Biggs
2025-07-30 12:04:27 -05:00
committed by GitHub
parent 1f2f95af92
commit 5322bf72fb
2 changed files with 74 additions and 69 deletions
+1 -1
View File
@@ -321,7 +321,7 @@ resource "aws_launch_template" "this" {
}
}
instance_type = var.instance_type
instance_type = var.instance_requirements != null ? null : var.instance_type
kernel_id = var.kernel_id
key_name = var.key_name