From 42f30873b24c062ff3f509415fcf97ed43907491 Mon Sep 17 00:00:00 2001 From: James Montemagno Date: Tue, 6 Dec 2022 16:48:03 -0800 Subject: [PATCH] cleanup config urls --- deploy/Services/hub.bicep | 2 +- deploy/Web/web.bicep | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/Services/hub.bicep b/deploy/Services/hub.bicep index a3561dc..4795478 100644 --- a/deploy/Services/hub.bicep +++ b/deploy/Services/hub.bicep @@ -62,7 +62,7 @@ resource webApp 'Microsoft.Web/sites@2022-03-01' = { appSettings: [ { name: 'NetPodcastApi__BaseAddress' - value: apiContainerApp.properties.configuration.ingress.fqdn + value: 'https://${apiContainerApp.properties.configuration.ingress.fqdn}' } ] } diff --git a/deploy/Web/web.bicep b/deploy/Web/web.bicep index 31036a1..d00d2d2 100644 --- a/deploy/Web/web.bicep +++ b/deploy/Web/web.bicep @@ -57,11 +57,11 @@ resource webApp 'Microsoft.Web/sites@2022-03-01' = { appSettings: [ { name: 'PodcastApi__BaseAddress' - value: apiContainerApp.properties.configuration.ingress.fqdn + value: 'https://${apiContainerApp.properties.configuration.ingress.fqdn}' } { name: 'ListenTogetherHub' - value: hubWebApp.properties.hostNames[0] + value: 'https://${hubWebApp.properties.hostNames[0]}/listentogether' } ] }