Skip to content

Commit

Permalink
fix:change in count condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw committed Feb 21, 2024
1 parent f9f7174 commit 589f1a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -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."
}

Expand Down

0 comments on commit 589f1a2

Please sign in to comment.