mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-23 18:01:04 +01:00
fix: Fixed launch template version infinite plan issue and improved rolling updates (#1447)
This commit is contained in:
committed by
GitHub
parent
4f683ab776
commit
d17007b542
@@ -27,7 +27,7 @@ resource "aws_launch_template" "workers" {
|
||||
|
||||
name_prefix = local.node_groups_names[each.key]
|
||||
description = format("EKS Managed Node Group custom LT for %s", local.node_groups_names[each.key])
|
||||
update_default_version = true
|
||||
update_default_version = lookup(each.value, "update_default_version", true)
|
||||
|
||||
block_device_mappings {
|
||||
device_name = "/dev/xvda"
|
||||
|
||||
Reference in New Issue
Block a user