2026.8.25.2

Overview

Name webappslot
Tag 2026.8.25.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webappslot:2026.8.25.2
Last updated 2026-08-25 09:45:45:+00:00
Created 2026-08-25 09:45:45:+00:00
Digest sha256:a0cef6a1f0b924705d81b43d9e14549ddda7669f3b7237bdadc836f73cf64bb7

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