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
# Windows nodes are available from k8s 1.14. If cluster version is less than 1.14, fix ami filter to some constant to not fail on 'terraform plan'.
@@ -72,7 +91,7 @@ locals {
72
91
placement_group =null# The name of the placement group into which to launch the instances, if any.
73
92
service_linked_role_arn =""# Arn of custom service linked role that Auto Scaling group will use. Useful when you have encrypted EBS
74
93
termination_policies = [] # A list of policies to decide how the instances in the auto scale group should be terminated.
75
-
platform ="linux"# Platform of workers. either "linux" or "windows"
94
+
platform =local.default_platform# Platform of workers. Either "linux" or "windows".
76
95
additional_ebs_volumes = [] # A list of additional volumes to be attached to the instances on this Auto Scaling group. Each volume should be an object with the following: block_device_name (required), volume_size, volume_type, iops, encrypted, kms_key_id (only on launch-template), delete_on_termination. Optional values are grabbed from root volume or from defaults
77
96
additional_instance_store_volumes = [] # A list of additional instance store (local disk) volumes to be attached to the instances on this Auto Scaling group. Each volume should be an object with the following: block_device_name (required), virtual_name.
78
97
warm_pool =null# If this block is configured, add a Warm Pool to the specified Auto Scaling group.
0 commit comments