Overview
|
|
| Name |
appserviceplanweb |
| Tag |
2026.8.31.6 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanweb:2026.8.31.6 |
| Last updated |
2026-08-31 10:50:41:+00:00 |
| Created |
2026-08-31 10:50:41:+00:00 |
| Digest |
sha256:9bf19ac534e1b201c053d15f601fc6c7610b87ae093c746e81c0ea235a6edace |
Parameters
| Name |
Type |
Required |
Description |
env |
string |
Yes |
|
system |
string |
Yes |
|
suffix |
string |
Yes |
|
tags |
object |
Yes |
|
location |
string |
No
resourceGroup().location |
|
kind |
string |
No
'linux' |
|
elasticScaleEnabled |
bool |
No
false |
|
scaleTypeEnabled |
bool |
No
false |
|
scaleType |
string |
No
'automatic' |
Allowed values: automatic, manual and none |
maximumElasticWorkerCount |
int |
No
1 |
|
sku |
object |
No
{ name: 'B1' } |
|
properties |
object |
No
{ } |
|
appServicePlanName |
string |
No
format('{0}-asp-{1}-{2}', system, env, suffix) |
|
Outputs
| Name |
Type |
Description |
serverFarmId |
string |
|
appServicePlanName |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param system string
param suffix string
param tags object
module appserviceplanweb 'br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanweb:2026.8.31.6' = {
name: 'appserviceplanweb${env}${version}'
params: {
env: env
system: system
suffix: suffix
tags: tags
}
}