add workers_asg_names to outputs

This commit is contained in:
Andrew Lavery
2018-07-20 10:17:25 -07:00
parent 2814efcb8a
commit 6206484f44
3 changed files with 7 additions and 0 deletions

View File

@@ -44,6 +44,11 @@ output "workers_asg_arns" {
value = "${aws_autoscaling_group.workers.*.arn}"
}
output "workers_asg_names" {
description = "Names of the autoscaling groups containing workers."
value = "${aws_autoscaling_group.workers.*.id}"
}
output "worker_security_group_id" {
description = "Security group ID attached to the EKS workers."
value = "${local.worker_security_group_id}"