mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-20 16:43:46 +01:00
feat: Add customizable Auto Scaling Group health check type (#1118)
This commit is contained in:
committed by
GitHub
parent
b0f51fdbe5
commit
ccacc17792
@@ -87,6 +87,11 @@ resource "aws_autoscaling_group" "workers_launch_template" {
|
||||
"default_cooldown",
|
||||
local.workers_group_defaults["default_cooldown"]
|
||||
)
|
||||
health_check_type = lookup(
|
||||
var.worker_groups_launch_template[count.index],
|
||||
"health_check_type",
|
||||
local.workers_group_defaults["health_check_type"]
|
||||
)
|
||||
health_check_grace_period = lookup(
|
||||
var.worker_groups_launch_template[count.index],
|
||||
"health_check_grace_period",
|
||||
|
||||
Reference in New Issue
Block a user