From 104b2d48a4332d93d157cd20c9d575e1272e7375 Mon Sep 17 00:00:00 2001 From: Alastair Lock Date: Tue, 10 Dec 2024 23:06:47 +0000 Subject: [PATCH] wip --- infrastructure/modules/function-app/output.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/infrastructure/modules/function-app/output.tf b/infrastructure/modules/function-app/output.tf index e275169..5198518 100644 --- a/infrastructure/modules/function-app/output.tf +++ b/infrastructure/modules/function-app/output.tf @@ -3,6 +3,11 @@ output "name" { value = azurerm_linux_function_app.function_app.name } +output "function_app_endpoint_name" { + description = "The function app endpoint name." + value = var.function_app_name +} + output "id" { description = "The id of the Linux Function App." value = azurerm_linux_function_app.function_app.id