From 6206484f4419397f706e8a7ed508511e851292df Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Fri, 20 Jul 2018 10:17:25 -0700 Subject: [PATCH] add workers_asg_names to outputs --- CHANGELOG.md | 1 + README.md | 1 + outputs.tf | 5 +++++ 3 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34dfc58..57b3993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ project adheres to [Semantic Versioning](http://semver.org/). ### Added - manage eks workers' root volume size and type +- `workers_asg_names` added to outputs. ### Changed diff --git a/README.md b/README.md index b5859a8..bea057f 100644 --- a/README.md +++ b/README.md @@ -132,4 +132,5 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | worker_iam_role_name | IAM role name attached to EKS workers | | worker_security_group_id | Security group ID attached to the EKS workers. | | workers_asg_arns | IDs of the autoscaling groups containing workers. | +| workers_asg_names | Names of the autoscaling groups containing workers. | diff --git a/outputs.tf b/outputs.tf index bda7bf0..300ea94 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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}"