2026.8.26.3

Overview

Name appserviceplanwebexisting
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanwebexisting:2026.8.26.3
Last updated 2026-08-26 07:45:15:+00:00
Created 2026-08-26 07:45:15:+00:00
Digest sha256:ef1ca26af30d9e5177dc6712af649e9de424a13df3789d2d34f5c7926e19242b

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.26.3' = {
    name: 'appserviceplanwebexisting${env}${version}'
    params: {
      webAppPlanConfig: webAppPlanConfig
      env: env
    }
}