feat: Add outputs for autoscaling group names created to aid in autoscaling group tagging (#1953)

This commit is contained in:
Bryant Biggs
2022-03-22 17:26:00 -04:00
committed by GitHub
parent dd97344d2b
commit 8b03b7b85e
14 changed files with 78 additions and 0 deletions

View File

@@ -153,6 +153,11 @@ output "eks_managed_node_groups" {
value = module.eks.eks_managed_node_groups
}
output "eks_managed_node_groups_autoscaling_group_names" {
description = "List of the autoscaling group names created by EKS managed node groups"
value = module.eks.eks_managed_node_groups_autoscaling_group_names
}
################################################################################
# Self Managed Node Group
################################################################################
@@ -162,6 +167,11 @@ output "self_managed_node_groups" {
value = module.eks.self_managed_node_groups
}
output "self_managed_node_groups_autoscaling_group_names" {
description = "List of the autoscaling group names created by self-managed node groups"
value = module.eks.self_managed_node_groups_autoscaling_group_names
}
################################################################################
# Additional
################################################################################