Add suspended_processes attributes to autoscaling_group (#153)

This commit is contained in:
Bruno Meneguello
2018-10-09 05:52:12 -03:00
committed by Max Williams
parent 6de0825644
commit c8cc60f46d
3 changed files with 4 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ locals {
additional_security_group_ids = "" # A comman delimited list of additional security group ids to include in worker launch config
protect_from_scale_in = false # Prevent AWS from scaling in, so that cluster-autoscaler is solely responsible.
iam_role_id = "${local.default_iam_role_id}" # Use the specified IAM role if set.
suspended_processes = "" # A comma delimited string of processes to to suspend. i.e. AZRebalance,HealthCheck,ReplaceUnhealthy
}
workers_group_defaults = "${merge(local.workers_group_defaults_defaults, var.workers_group_defaults)}"