mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-02 13:24:28 +02:00
Disabling ASG process AZRebalance by default (#369)
This commit is contained in:
4
local.tf
4
local.tf
@@ -35,7 +35,7 @@ locals {
|
||||
additional_security_group_ids = "" # A comma 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
|
||||
suspended_processes = "AZRebalance" # A comma delimited string of processes to to suspend. i.e. AZRebalance,HealthCheck,ReplaceUnhealthy
|
||||
target_group_arns = "" # A comma delimited list of ALB target group ARNs to be associated to the ASG
|
||||
enabled_metrics = "" # A comma delimited list of metrics to be collected i.e. GroupMinSize,GroupMaxSize,GroupDesiredCapacity
|
||||
placement_group = "" # The name of the placement group into which to launch the instances, if any.
|
||||
@@ -80,7 +80,7 @@ locals {
|
||||
additional_security_group_ids = "" # A comma 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
|
||||
suspended_processes = "AZRebalance" # A comma delimited string of processes to to suspend. i.e. AZRebalance,HealthCheck,ReplaceUnhealthy
|
||||
target_group_arns = "" # A comma delimited list of ALB target group ARNs to be associated to the ASG
|
||||
enabled_metrics = "" # A comma delimited list of metrics to be collected i.e. GroupMinSize,GroupMaxSize,GroupDesiredCapacity
|
||||
placement_group = "" # The name of the placement group into which to launch the instances, if any.
|
||||
|
||||
Reference in New Issue
Block a user