Fixes for Launch Templates (#361)

* Fixes for Launch Templates

* update changelog

* add outputs for 3 LT attributes
This commit is contained in:
Max Williams
2019-05-07 10:59:07 +02:00
committed by GitHub
parent 2b633a107d
commit 3ece32fedf
5 changed files with 31 additions and 5 deletions

View File

@@ -64,6 +64,21 @@ output "workers_asg_names" {
value = "${concat(aws_autoscaling_group.workers.*.id, aws_autoscaling_group.workers_launch_template.*.id)}"
}
output "workers_launch_template_ids" {
description = "IDs of the worker launch templates."
value = "${aws_launch_template.workers_launch_template.*.id}"
}
output "workers_launch_template_arns" {
description = "ARNs of the worker launch templates."
value = "${aws_launch_template.workers_launch_template.*.arn}"
}
output "workers_launch_template_latest_versions" {
description = "Latest versions of the worker launch templates."
value = "${aws_launch_template.workers_launch_template.*.latest_version}"
}
output "worker_security_group_id" {
description = "Security group ID attached to the EKS workers."
value = "${local.worker_security_group_id}"