mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08: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
@@ -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