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

feat: Add create_autoscaling_group option and extra outputs (#2067)

This commit is contained in:
Seth Pollack
2022-05-12 14:17:49 -04:00
committed by GitHub
parent d969e94bbe
commit 58420b92a0
5 changed files with 22 additions and 1 deletions
+2
View File
@@ -346,6 +346,8 @@ module "self_managed_node_group" {
cluster_ip_family = var.cluster_ip_family
# Autoscaling Group
create_autoscaling_group = try(each.value.create_autoscaling_group, var.self_managed_node_group_defaults.create_autoscaling_group, true)
name = try(each.value.name, each.key)
use_name_prefix = try(each.value.use_name_prefix, var.self_managed_node_group_defaults.use_name_prefix, true)