From 589f1a2d207402391614606f781ca8bb26c06411 Mon Sep 17 00:00:00 2001 From: Rupal Sharma Date: Wed, 21 Feb 2024 15:53:53 +0530 Subject: [PATCH] fix:change in count condition --- outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outputs.tf b/outputs.tf index 02e4983..d210de8 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,10 +1,10 @@ output "id" { - value = join("", azurerm_logic_app_workflow.main.*.id) + value = try(azurerm_logic_app_workflow.main[0].id, null) description = "The Logic App Workflow ID." } output "access_endpoint" { - value = join("", azurerm_logic_app_workflow.main.*.access_endpoint) + value = try(azurerm_logic_app_workflow.main[*].access_endpoint, null) description = "The Access Endpoint for the Logic App Workflow." }