Overview
|
|
| Name |
webappslot |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webappslot:2026.9.9.2 |
| Last updated |
2026-09-09 12:47:53:+00:00 |
| Created |
2026-09-09 12:47:53:+00:00 |
| Digest |
sha256:4f71e42c9325599c893eaa0a6d8a40d2512dc8d8be833693357b76c4afe5f4d7 |
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
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.9.9.2' = {
name: 'webappslot${env}${version}'
params: {
webappName: webappName
appInsightsInstrumentationKey: appInsightsInstrumentationKey
appInsightsConnectionString: appInsightsConnectionString
settings: settings
connectionStrings: connectionStrings
extraModules: extraModules
slotName: slotName
}
}