2026.8.26.3

Overview

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

Parameters

Name Type Required Description
env string Yes
system string Yes
suffix string Yes
tags object Yes
location string No
resourceGroup().location
kind string No
'linux'
elasticScaleEnabled bool No
false
scaleTypeEnabled bool No
false
scaleType string No
'automatic'
Allowed values: automatic, manual and none
maximumElasticWorkerCount int No
1
sku object No
{
name: 'B1'
}
properties object No
{
}
appServicePlanName string No
format('{0}-asp-{1}-{2}', system, env, suffix)

Outputs

Name Type Description
serverFarmId string
appServicePlanName string

Example

@description('The target environment.')
param env string

@description('The deployment version.')
param version string = '1.0.0.0'

param system string

param suffix string

param tags object


module appserviceplanweb 'br:bicepacrdevwcom.azurecr.io/bicep/modules/appserviceplanweb:2026.8.26.3' = {
    name: 'appserviceplanweb${env}${version}'
    params: {
      env: env
      system: system
      suffix: suffix
      tags: tags
    }
}