mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-22 17:39:05 +01:00
Add Windows support (#555)
* Add Windows support * Assign eks:kube-proxy-windows group to worker nodes * Add Instructions for adding Windows Workers at FAQ.md * Remove unnecessary variables from userdata_windows.tpl * Update CHANGELOG.md
This commit is contained in:
committed by
Thierno IB. BARRY
parent
be6fa61d0d
commit
2d52e06786
10
aws_auth.tf
10
aws_auth.tf
@@ -47,6 +47,11 @@ data "template_file" "launch_template_worker_role_arns" {
|
||||
),
|
||||
count.index,
|
||||
)}"
|
||||
platform = lookup(
|
||||
var.worker_groups_launch_template[count.index],
|
||||
"platform",
|
||||
local.workers_group_defaults["platform"]
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -63,6 +68,11 @@ data "template_file" "worker_role_arns" {
|
||||
),
|
||||
count.index,
|
||||
)}"
|
||||
platform = lookup(
|
||||
var.worker_groups[count.index],
|
||||
"platform",
|
||||
local.workers_group_defaults["platform"]
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user