Overview
| Name | appserviceplanwebexisting |
| Tag | 2026.8.31.6 |
| FullName | br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanwebexisting:2026.8.31.6 |
| Last updated | 2026-08-31 10:50:48:+00:00 |
| Created | 2026-08-31 10:50:48:+00:00 |
| Digest | sha256:5ebd92ff04d93356ba7038d9db6bfa814a1a9d6c397dbfbb4abb7790bd88ef40 |
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.31.6' = {
name: 'appserviceplanwebexisting${env}${version}'
params: {
webAppPlanConfig: webAppPlanConfig
env: env
}
}