fix: Set image_id to come from the launch template instead of data source for self-managed node groups (#2239)

This commit is contained in:
Charles Bushong
2022-09-26 10:02:13 -04:00
committed by GitHub
parent 57bb667f20
commit c5944e5fb6

View File

@@ -153,7 +153,7 @@ output "platform" {
output "image_id" {
description = "ID of the image"
value = try(data.aws_ami.eks_default[0].image_id, "")
value = try(aws_launch_template.this[0].image_id, "")
}
output "user_data" {