feat: Add output for launch template name, and correct variable type value (#2205)

This commit is contained in:
Bryant Biggs
2022-08-17 06:24:22 -04:00
committed by GitHub
parent c0f14fbdef
commit 0a52d690d5
8 changed files with 22 additions and 10 deletions

View File

@@ -17,6 +17,11 @@ output "launch_template_latest_version" {
value = try(aws_launch_template.this[0].latest_version, "")
}
output "launch_template_name" {
description = "The name of the launch template"
value = try(aws_launch_template.this[0].name, "")
}
################################################################################
# Node Group
################################################################################