mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-18 01:27:55 +01:00
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:
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user