Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ param containerRegistryHostname string = 'bycwacontainerreg.azurecr.io'
param containerImageName string = 'byc-wa-app'

@description('Optional. The Container Image Tag to deploy on the webapp.')
param containerImageTag string = 'latest_waf'
param imageTag string = 'latest_waf_2025-09-18_794'

@description('Optional. Resource ID of an existing Foundry project')
param existingFoundryProjectResourceId string = ''
Expand Down Expand Up @@ -991,7 +991,7 @@ module webSite 'modules/web-sites.bicep' = {
kind: 'app,linux,container'
serverFarmResourceId: webServerFarm.?outputs.resourceId
siteConfig: {
linuxFxVersion: 'DOCKER|${containerRegistryHostname}/${containerImageName}:${containerImageTag}'
linuxFxVersion: 'DOCKER|${containerRegistryHostname}/${containerImageName}:${imageTag}'
minTlsVersion: '1.2'
}
configs: [
Expand Down
Loading