The following resources:
module "suspend_asg_processes_command" {
source = "digitickets/cli/aws"
version = "4.1.0"
aws_cli_commands = ["autoscaling", "suspend-processes", "--auto-scaling-group-name ${module.eks.node_groups.deployment.resources.0.autoscaling_groups.0.name}", "--scaling-processes AZRebalance"]
}
module "set_asg_default_cooldown_command" {
source = "digitickets/cli/aws"
version = "4.1.0"
aws_cli_commands = ["autoscaling", "update-auto-scaling-group", "--auto-scaling-group-name ${module.eks.node_groups.deployment.resources.0.autoscaling_groups.0.name}", "--default-cooldown 60"]
}
module "enable_asg_metrics_collection" {
source = "digitickets/cli/aws"
version = "4.1.0"
aws_cli_commands = ["autoscaling", "enable-metrics-collection ", "--auto-scaling-group-name ${module.eks.node_groups.deployment.resources.0.autoscaling_groups.0.name}", "--granularity \"1Minute\""]
}
Upgrading to v18 of the EKS should allow us to set these for node_groups
The following resources:
Upgrading to v18 of the EKS should allow us to set these for
node_groups