Overview
| Name | appserviceplanwebexisting |
| Tag | 2026.8.25.2 |
| FullName | br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanwebexisting:2026.8.25.2 |
| Last updated | 2026-08-25 09:46:08:+00:00 |
| Created | 2026-08-25 09:46:08:+00:00 |
| Digest | sha256:b7d7662c94a6eed074acd7a6a138e2f308efadc34c1ab6c31c5e4d392c2e789b |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
webAppPlanConfig |
object |
Yes | // Example config in main: var webAppPlan = { dev: { name: 'asp-web-common-dev-customer' rgName: 'rg-web-common-dev-customer' } stg: { name: 'asp-web-common-stg-customer' rgName: 'rg-web-common-stg-customer' } prd: { name: 'asp-web-common-prd-customer' rgName: 'rg-web-common-prd-customer' } } |
env |
string |
Yes |
Outputs
| Name | Type | Description |
|---|---|---|
serverFarmId |
string |
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
@description('// Example config in main:
var webAppPlan = {
dev: {
name: 'asp-web-common-dev-customer'
rgName: 'rg-web-common-dev-customer'
}
stg: {
name: 'asp-web-common-stg-customer'
rgName: 'rg-web-common-stg-customer'
}
prd: {
name: 'asp-web-common-prd-customer'
rgName: 'rg-web-common-prd-customer'
}
}
')
param webAppPlanConfig object
module appserviceplanwebexisting 'br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanwebexisting:2026.8.25.2' = {
name: 'appserviceplanwebexisting${env}${version}'
params: {
webAppPlanConfig: webAppPlanConfig
env: env
}
}