mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-30 06:01:50 +02: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" {
|
output "image_id" {
|
||||||
description = "ID of the image"
|
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" {
|
output "user_data" {
|
||||||
|
|||||||
Reference in New Issue
Block a user