Skip to content

Commit 6e0cf72

Browse files
Merge pull request #77 from laverya/output-workers-asg-names
add workers_asg_names to outputs
2 parents 2814efc + 6206484 commit 6e0cf72

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
1010
### Added
1111

1212
- manage eks workers' root volume size and type
13+
- `workers_asg_names` added to outputs.
1314

1415
### Changed
1516

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,5 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
132132
| worker_iam_role_name | IAM role name attached to EKS workers |
133133
| worker_security_group_id | Security group ID attached to the EKS workers. |
134134
| workers_asg_arns | IDs of the autoscaling groups containing workers. |
135+
| workers_asg_names | Names of the autoscaling groups containing workers. |
135136

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ output "workers_asg_arns" {
4444
value = "${aws_autoscaling_group.workers.*.arn}"
4545
}
4646

47+
output "workers_asg_names" {
48+
description = "Names of the autoscaling groups containing workers."
49+
value = "${aws_autoscaling_group.workers.*.id}"
50+
}
51+
4752
output "worker_security_group_id" {
4853
description = "Security group ID attached to the EKS workers."
4954
value = "${local.worker_security_group_id}"

0 commit comments

Comments
 (0)