cleanup config urls

pull/184/head
James Montemagno 2022-12-06 16:48:03 -08:00 committed by GitHub
parent 72b3374ef9
commit 42f30873b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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}'
}
]
}

View File

@ -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'
}
]
}