2026.8.26.3

Overview

Name webappslot
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webappslot:2026.8.26.3
Last updated 2026-08-26 07:44:50:+00:00
Created 2026-08-26 07:44:50:+00:00
Digest sha256:ad7f9f1537388ca12a555d4429a9bcfbe72933292e2ad1beb47038044fbc8905

Parameters

Name Type Required Description
webappName string Yes name of the application
appInsightsInstrumentationKey string Yes
appInsightsConnectionString string Yes
settings object Yes
connectionStrings object Yes
easyauthEnabled bool No
true
aadProviderEnabled bool No
true
ipAllowDenyList array No
[
]
corshosts string No
''
alwaysOnSetting bool No
false
extraModules array Yes
netFrameworkVersion string No
'v4.0'
adclientId string No
''
adclientIdsecret ▲ secure ▲
string
No
''
tenantId string No
subscription().tenantId
slotName string Yes

Outputs

Name Type Description

Example

@description('The target environment.')
param env string

@description('The deployment version.')
param version string = '1.0.0.0'

@description('name of the application')
param webappName string

param appInsightsInstrumentationKey string

param appInsightsConnectionString string

param settings object

param connectionStrings object

param extraModules array

param slotName string


module webappslot 'br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webappslot:2026.8.26.3' = {
    name: 'webappslot${env}${version}'
    params: {
      webappName: webappName
      appInsightsInstrumentationKey: appInsightsInstrumentationKey
      appInsightsConnectionString: appInsightsConnectionString
      settings: settings
      connectionStrings: connectionStrings
      extraModules: extraModules
      slotName: slotName
    }
}