File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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+
4752output "worker_security_group_id" {
4853 description = " Security group ID attached to the EKS workers."
4954 value = " ${ local . worker_security_group_id } "
You can’t perform that action at this time.
0 commit comments