Skip to content

Commit a0b8184

Browse files
authored
Fix Version update (#456)
1 parent 8e3cb6f commit a0b8184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node_groups.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ resource "aws_eks_node_group" "node_group" {
9898
dynamic "launch_template" {
9999
for_each = lookup(each.value, "node_disk_encrypted", false) ? [{
100100
id = aws_launch_template.encrypted_launch_template[each.key].id
101-
version = "$Latest"
101+
version = aws_launch_template.encrypted_launch_template[each.key].latest_version
102102
}] : lookup(each.value, "launch_template", [])
103103

104104
content {

0 commit comments

Comments
 (0)