mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-01 15:03:06 +02:00
Add support for placement group in launch template (#332)
* Update to 1.12 * Update workers_launch_template.tf * Update local.tf * Update CHANGELOG.md * Update workers.tf * Update workers.tf
This commit is contained in:
committed by
Max Williams
parent
fb59e4fef4
commit
b81a15ad41
@@ -82,7 +82,8 @@ resource "aws_launch_template" "workers_launch_template" {
|
||||
}
|
||||
|
||||
placement {
|
||||
tenancy = "${lookup(var.worker_groups_launch_template[count.index], "placement_tenancy", local.workers_group_launch_template_defaults["placement_tenancy"])}"
|
||||
tenancy = "${lookup(var.worker_groups_launch_template[count.index], "placement_tenancy", local.workers_group_launch_template_defaults["placement_tenancy"])}"
|
||||
group_name = "${lookup(var.worker_groups_launch_template[count.index], "placement_group", local.workers_group_launch_template_defaults["placement_group"])}"
|
||||
}
|
||||
|
||||
count = "${var.worker_group_launch_template_count}"
|
||||
|
||||
Reference in New Issue
Block a user