Overview
| Name | appserviceplanfunctionexisting |
| Tag | 2026.9.9.2 |
| FullName | br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanfunctionexisting:2026.9.9.2 |
| Last updated | 2026-09-09 12:48:11:+00:00 |
| Created | 2026-09-09 12:48:11:+00:00 |
| Digest | sha256:c88967bc0f62fc6442e0c0d6a0d4e894082456ef78c6e7158b2ad030b045ae0e |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
functionAppPlanConfig |
object |
Yes | // Example config in main: var functionAppPlan = { dev: { name: 'asp-functions-common-dev-customer' rgName: 'rg-functions-common-dev-customer' } stg: { name: 'asp-functions-common-stg-customer' rgName: 'rg-functions-common-stg-customer' } prd: { name: 'asp-functions-common-prd-customer' rgName: 'rg-functions-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 functionAppPlan = {
dev: {
name: 'asp-functions-common-dev-customer'
rgName: 'rg-functions-common-dev-customer'
}
stg: {
name: 'asp-functions-common-stg-customer'
rgName: 'rg-functions-common-stg-customer'
}
prd: {
name: 'asp-functions-common-prd-customer'
rgName: 'rg-functions-common-prd-customer'
}
}
')
param functionAppPlanConfig object
module appserviceplanfunctionexisting 'br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanfunctionexisting:2026.9.9.2' = {
name: 'appserviceplanfunctionexisting${env}${version}'
params: {
functionAppPlanConfig: functionAppPlanConfig
env: env
}
}