feat: Add create_autoscaling_group option and extra outputs (#2067)

This commit is contained in:
Seth Pollack
2022-05-12 14:17:49 -04:00
committed by GitHub
parent d969e94bbe
commit 58420b92a0
5 changed files with 22 additions and 1 deletions

View File

@@ -145,3 +145,13 @@ output "platform" {
description = "Identifies if the OS platform is `bottlerocket`, `linux`, or `windows` based"
value = var.platform
}
output "image_id" {
description = "ID of the image"
value = try(data.aws_ami.eks_default[0].image_id, "")
}
output "user_data" {
description = "Base64 encoded user data"
value = try(module.user_data.user_data, "")
}