2026.8.31.6

Overview

Name webappslot
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webappslot:2026.8.31.6
Last updated 2026-08-31 10:50:23:+00:00
Created 2026-08-31 10:50:23:+00:00
Digest sha256:c659ec1aa51ead54f16f45b9460cc2802ffe395fa47bd9a90244a7bfcd157f7b

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.31.6' = {
    name: 'webappslot${env}${version}'
    params: {
      webappName: webappName
      appInsightsInstrumentationKey: appInsightsInstrumentationKey
      appInsightsConnectionString: appInsightsConnectionString
      settings: settings
      connectionStrings: connectionStrings
      extraModules: extraModules
      slotName: slotName
    }
}