2026.9.9.2

Overview

Name appserviceplanwebexisting
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanwebexisting:2026.9.9.2
Last updated 2026-09-09 12:48:20:+00:00
Created 2026-09-09 12:48:20:+00:00
Digest sha256:1af2ccc4454c967c84d6164d68abfb727f1adf0cd01c00a3be7429e0113aabc5

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