feat: Add Autoscaling schedule for EKS managed node group (#2504)

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Le Minh Duc
2023-03-31 21:46:27 +07:00
committed by GitHub
parent 2cf6a5bc14
commit 4a2523cddd
8 changed files with 78 additions and 3 deletions

View File

@@ -61,6 +61,15 @@ output "node_group_taints" {
value = try(aws_eks_node_group.this[0].taint, [])
}
################################################################################
# Autoscaling Group Schedule
################################################################################
output "autoscaling_group_schedule_arns" {
description = "ARNs of autoscaling group schedules"
value = { for k, v in aws_autoscaling_schedule.this : k => v.arn }
}
################################################################################
# IAM Role
################################################################################