Skip to content

Commit

Permalink
add desc for LT
Browse files Browse the repository at this point in the history
  • Loading branch information
barryib committed May 19, 2021
1 parent 7f11929 commit d5a1818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/node_groups/launchtemplate.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_launch_template" "workers" {
for_each = { for k, v in local.node_groups_expanded : k => v if v["create_launch_template"] }

name_prefix = lookup(each.value, "name", join("-", [var.cluster_name, each.key]))
description = lookup(each.value, "name", join("-", [var.cluster_name, each.key]))
description = format("EKS Managed Node Group custom LT for %s", lookup(each.value, "name", join("-", [var.cluster_name, each.key])))
update_default_version = true

block_device_mappings {
Expand Down

0 comments on commit d5a1818

Please sign in to comment.