mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
Allows worker groups to be created using AWS Launch Templates (#222)
This commit is contained in:
+2
-2
@@ -41,12 +41,12 @@ output "kubeconfig" {
|
||||
|
||||
output "workers_asg_arns" {
|
||||
description = "IDs of the autoscaling groups containing workers."
|
||||
value = "${aws_autoscaling_group.workers.*.arn}"
|
||||
value = "${concat(aws_autoscaling_group.workers.*.arn, aws_autoscaling_group.workers_launch_template.*.arn)}"
|
||||
}
|
||||
|
||||
output "workers_asg_names" {
|
||||
description = "Names of the autoscaling groups containing workers."
|
||||
value = "${aws_autoscaling_group.workers.*.id}"
|
||||
value = "${concat(aws_autoscaling_group.workers.*.id, aws_autoscaling_group.workers_launch_template.*.id)}"
|
||||
}
|
||||
|
||||
output "worker_security_group_id" {
|
||||
|
||||
Reference in New Issue
Block a user