From 285e6cbb6901b099cfdbb78246db08eb9b508954 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Fri, 19 Apr 2024 13:56:01 -0700 Subject: [PATCH] Fix the output URI --- infra/main.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/main.bicep b/infra/main.bicep index cc4fa9a..5b1e94b 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -113,7 +113,7 @@ module logAnalyticsWorkspace 'core/monitor/loganalytics.bicep' = { } output WEB_APP_NAME string = webAppName -output WEB_URI string = 'https://${web.outputs.uri}' +output WEB_URI string = web.outputs.uri output AZURE_LOCATION string = location output POSTGRES_DOMAIN_NAME string = postgresServer.outputs.POSTGRES_DOMAIN_NAME