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
+2-14
Original file line number
Diff line number
Diff line change
@@ -75,28 +75,16 @@ locals {
75
75
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
76
76
warm_pool =null# If this block is configured, add a Warm Pool to the specified Auto Scaling group.
77
77
# Settings for launch templates
78
-
<<<<<<<HEAD
79
-
root_block_device_name = data.aws_ami.eks_worker.root_device_name # Root device name for workers. If non is provided, will assume default AMI was used.
80
-
root_kms_key_id = "" # The KMS key to use when encrypting the root storage device
81
-
launch_template_id = null # The id of the launch template used for managed node_groups
82
-
launch_template_version = "$Latest" # The latest version of the launch template to use in the autoscaling group
83
-
update_default_version = false # Update the autoscaling group launch template's default version upon each update
84
-
launch_template_placement_tenancy = "default" # The placement tenancy for instances
85
-
launch_template_placement_group = null # The name of the placement group into which to launch the instances, if any.
86
-
root_encrypted = false # Whether the volume should be encrypted or not
87
-
eni_delete = true # Delete the Elastic Network Interface (ENI) on termination (if set to false you will have to manually delete before destroying)
88
-
cpu_credits = "standard" # T2/T3 unlimited mode, can be 'standard' or 'unlimited'. Used 'standard' mode as default to avoid paying higher costs
89
-
=======
90
78
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.
91
79
root_kms_key_id =""# The KMS key to use when encrypting the root storage device
92
80
launch_template_id =null# The id of the launch template used for managed node_groups
93
-
launch_template_version = "$Latest" # The lastest version of the launch template to use in the autoscaling group
81
+
launch_template_version ="$Latest"# The latest version of the launch template to use in the autoscaling group
82
+
update_default_version =false# Update the autoscaling group launch template's default version upon each update
94
83
launch_template_placement_tenancy ="default"# The placement tenancy for instances
95
84
launch_template_placement_group =null# The name of the placement group into which to launch the instances, if any.
96
85
root_encrypted =false# Whether the volume should be encrypted or not
97
86
eni_delete =true# Delete the Elastic Network Interface (ENI) on termination (if set to false you will have to manually delete before destroying)
98
87
cpu_credits ="standard"# T2/T3 unlimited mode, can be 'standard' or 'unlimited'. Used 'standard' mode as default to avoid paying higher costs
99
-
>>>>>>> feat: Filter Windows or Linux AMIs only if they are needed
100
88
market_type =null
101
89
metadata_http_endpoint ="enabled"# The state of the metadata service: enabled, disabled.
102
90
metadata_http_tokens ="optional"# If session tokens are required: optional, required.
0 commit comments