mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-27 03:41:05 +01:00
Fixes for Launch Templates (#361)
* Fixes for Launch Templates * update changelog * add outputs for 3 LT attributes
This commit is contained in:
15
outputs.tf
15
outputs.tf
@@ -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}"
|
||||
|
||||
Reference in New Issue
Block a user