How to get the host url of a linux app service in azure bicep deployment templates
I've created an app service using a bicep resource shown below name: '${appName}' location: location kind: 'linux,container,fnapp' properties: { serverFarmId: servicePlan.id siteConfig: { linuxFxVersion: 'DOCKER|${dockerLocation}' healthCheckPath: '/api/healthcheck' alwaysOn: true appSettings: [ ... ] } } } Which works as expected,…