Skip to content

Commit 32cbd87

Browse files
committed
fixup
1 parent 0e26a50 commit 32cbd87

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

local.tf

+2-14
Original file line numberDiff line numberDiff line change
@@ -75,28 +75,16 @@ locals {
7575
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
7676
warm_pool = null # If this block is configured, add a Warm Pool to the specified Auto Scaling group.
7777
# 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-
=======
9078
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.
9179
root_kms_key_id = "" # The KMS key to use when encrypting the root storage device
9280
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
9483
launch_template_placement_tenancy = "default" # The placement tenancy for instances
9584
launch_template_placement_group = null # The name of the placement group into which to launch the instances, if any.
9685
root_encrypted = false # Whether the volume should be encrypted or not
9786
eni_delete = true # Delete the Elastic Network Interface (ENI) on termination (if set to false you will have to manually delete before destroying)
9887
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
10088
market_type = null
10189
metadata_http_endpoint = "enabled" # The state of the metadata service: enabled, disabled.
10290
metadata_http_tokens = "optional" # If session tokens are required: optional, required.

0 commit comments

Comments
 (0)