mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-19 07:53:46 +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
12
variables.tf
12
variables.tf
@@ -126,12 +126,24 @@ variable "worker_ami_name_filter" {
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "worker_ami_name_filter_windows" {
|
||||
description = "Name filter for AWS EKS Windows worker AMI. If not provided, the latest official AMI for the specified 'cluster_version' is used."
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "worker_ami_owner_id" {
|
||||
description = "The ID of the owner for the AMI to use for the AWS EKS workers. Valid values are an AWS account ID, 'self' (the current account), or an AWS owner alias (e.g. 'amazon', 'aws-marketplace', 'microsoft')."
|
||||
type = string
|
||||
default = "602401143452" // The ID of the owner of the official AWS EKS AMIs.
|
||||
}
|
||||
|
||||
variable "worker_ami_owner_id_windows" {
|
||||
description = "The ID of the owner for the AMI to use for the AWS EKS Windows workers. Valid values are an AWS account ID, 'self' (the current account), or an AWS owner alias (e.g. 'amazon', 'aws-marketplace', 'microsoft')."
|
||||
type = string
|
||||
default = "801119661308" // The ID of the owner of the official AWS EKS Windows AMIs.
|
||||
}
|
||||
|
||||
variable "worker_additional_security_group_ids" {
|
||||
description = "A list of additional security group ids to attach to worker instances"
|
||||
type = list(string)
|
||||
|
||||
Reference in New Issue
Block a user