Overview
| Name | appserviceplanfunctionexisting |
| Tag | 2026.8.26.3 |
| FullName | br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanfunctionexisting:2026.8.26.3 |
| Last updated | 2026-08-26 07:45:10:+00:00 |
| Created | 2026-08-26 07:45:10:+00:00 |
| Digest | sha256:b3b6019ca27a7b42ec72143e48b00694b832c07acd1349f5780d1aa57b74c066 |
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.8.26.3' = {
name: 'appserviceplanfunctionexisting${env}${version}'
params: {
functionAppPlanConfig: functionAppPlanConfig
env: env
}
}