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