2026.8.25.4

Overview

Name appserviceplanwebexisting
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanwebexisting:2026.8.25.4
Last updated 2026-08-25 10:40:19:+00:00
Created 2026-08-25 10:40:19:+00:00
Digest sha256:d2cf460870376fc62a964cbb4d8fe695fd6823ee1db13ea77d31e20b75e5e1b7

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