From 06a2ec740dbf3e5982681e61b51cca709b086f07 Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Thu, 11 Jan 2024 15:57:19 -0800 Subject: [PATCH] Add output for appservicepython --- .../appservice/appservicepython/appservicepython_output.tf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/common/infra/terraform/core/host/appservice/appservicepython/appservicepython_output.tf b/templates/common/infra/terraform/core/host/appservice/appservicepython/appservicepython_output.tf index 7821671ec18..cecf9b98dbe 100644 --- a/templates/common/infra/terraform/core/host/appservice/appservicepython/appservicepython_output.tf +++ b/templates/common/infra/terraform/core/host/appservice/appservicepython/appservicepython_output.tf @@ -5,4 +5,7 @@ output "URI" { output "IDENTITY_PRINCIPAL_ID" { value = length(azurerm_linux_web_app.web.identity) == 0 ? "" : azurerm_linux_web_app.web.identity.0.principal_id sensitive = true -} \ No newline at end of file +} +output "APPSERVICE_NAME" { + value = azurerm_linux_web_app.web.name +}