Overview
|
|
| Name |
webappslot |
| Tag |
2026.8.25.4 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/web/sites/webappslot:2026.8.25.4 |
| Last updated |
2026-08-25 10:39:54:+00:00 |
| Created |
2026-08-25 10:39:54:+00:00 |
| Digest |
sha256:f334b94bb2ce5736303ec626c6b65871c4b5f8f0dd6bdad3d30380f75854790d |
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.8.25.4' = {
name: 'webappslot${env}${version}'
params: {
webappName: webappName
appInsightsInstrumentationKey: appInsightsInstrumentationKey
appInsightsConnectionString: appInsightsConnectionString
settings: settings
connectionStrings: connectionStrings
extraModules: extraModules
slotName: slotName
}
}