mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-23 01:49:06 +01:00
feat: Search for Windows or Linux AMIs only if they are needed (#1371)
This commit is contained in:
committed by
GitHub
parent
a2761ad685
commit
06e9078bf4
@@ -116,7 +116,12 @@ output "workers_user_data" {
|
||||
|
||||
output "workers_default_ami_id" {
|
||||
description = "ID of the default worker group AMI"
|
||||
value = data.aws_ami.eks_worker.id
|
||||
value = local.default_ami_id_linux
|
||||
}
|
||||
|
||||
output "workers_default_ami_id_windows" {
|
||||
description = "ID of the default Windows worker group AMI"
|
||||
value = local.default_ami_id_windows
|
||||
}
|
||||
|
||||
output "workers_launch_template_ids" {
|
||||
|
||||
Reference in New Issue
Block a user