You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: local.tf
+11-10
Original file line number
Diff line number
Diff line change
@@ -78,16 +78,17 @@ locals {
78
78
warm_pool =null# If this block is configured, add a Warm Pool to the specified Auto Scaling group.
79
79
80
80
# Settings for launch templates
81
-
root_block_device_name =concat(data.aws_ami.eks_worker.*.root_device_name, [""])[0] # Root device name for workers. If non is provided, will assume default AMI was used.
82
-
root_kms_key_id =""# The KMS key to use when encrypting the root storage device
83
-
launch_template_id =null# The id of the launch template used for managed node_groups
84
-
launch_template_version ="$Latest"# The latest version of the launch template to use in the autoscaling group
85
-
update_default_version =false# Update the autoscaling group launch template's default version upon each update
86
-
launch_template_placement_tenancy ="default"# The placement tenancy for instances
87
-
launch_template_placement_group =null# The name of the placement group into which to launch the instances, if any.
88
-
root_encrypted =false# Whether the volume should be encrypted or not
89
-
eni_delete =true# Delete the Elastic Network Interface (ENI) on termination (if set to false you will have to manually delete before destroying)
90
-
cpu_credits ="standard"# T2/T3 unlimited mode, can be 'standard' or 'unlimited'. Used 'standard' mode as default to avoid paying higher costs
81
+
root_block_device_name =concat(data.aws_ami.eks_worker.*.root_device_name, [""])[0] # Root device name for workers. If non is provided, will assume default AMI was used.
82
+
root_block_device_name_windows =concat(data.aws_ami.eks_worker_windows.*.root_device_name, [""])[0] # Root device name for Windows workers. If non is provided, will assume default AMI was used.
83
+
root_kms_key_id =""# The KMS key to use when encrypting the root storage device
84
+
launch_template_id =null# The id of the launch template used for managed node_groups
85
+
launch_template_version ="$Latest"# The latest version of the launch template to use in the autoscaling group
86
+
update_default_version =false# Update the autoscaling group launch template's default version upon each update
87
+
launch_template_placement_tenancy ="default"# The placement tenancy for instances
88
+
launch_template_placement_group =null# The name of the placement group into which to launch the instances, if any.
89
+
root_encrypted =false# Whether the volume should be encrypted or not
90
+
eni_delete =true# Delete the Elastic Network Interface (ENI) on termination (if set to false you will have to manually delete before destroying)
91
+
cpu_credits ="standard"# T2/T3 unlimited mode, can be 'standard' or 'unlimited'. Used 'standard' mode as default to avoid paying higher costs
91
92
market_type =null
92
93
metadata_http_endpoint ="enabled"# The state of the metadata service: enabled, disabled.
93
94
metadata_http_tokens ="optional"# If session tokens are required: optional, required.
0 commit comments