2026.8.25.4

Overview

Name expressroutecircuit
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/expressroutecircuit:2026.8.25.4
Last updated 2026-08-25 10:40:43:+00:00
Created 2026-08-25 10:40:43:+00:00
Digest sha256:778c9901bc2a36b9c2abf2f991dc0262a163d5b3972d3976bb94069a7896fa09

Parameters

Name Type Required Description
env string Yes The environment to be created
expressRouteSKUTier string
'Premium',
'Standard'
No
'Premium'
Tier ExpressRoute circuit
expressRouteSKUFamily string
'MeteredData',
'UnlimitedData'
No
'MeteredData'
Billing model ExpressRoute circuit
bandwidthInMbps int
50,
100,
200,
500,
1000,
2000,
5000,
10000
No
50
Bandwidth ExpressRoute circuit
location string No
resourceGroup().location
Location for all resources
system string Yes System/project name
tags object Yes Tags to add to the resources
region string No
''
nameSuffix string No
''
expressRouteCircuitNamePrefix string No
''
expressRouteCircuitName string No
format('{0}{1}{2}-expressroutecircuit{3}{4}-{5}{6}{7}', expressRouteCircuitNamePrefix, if(empty(expressRouteCircuitNamePrefix), '', '-'), system, if(empty(region), '', '-'), region, env, if(empty(nameSuffix), '', '-'), nameSuffix)
Full server name, if not specified use default namePrefix-system-expressroutecircuit-region-env-suffix
serviceProviderName string Yes Name of the ExpressRoute provider
erpeeringLocation string Yes ExpressRoute peering location
erPeerings array No
[
]
ExpressRoute peerings

Outputs

Name Type Description
expressRouteCircuit string

Example

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

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

@description('System/project name')
param system string

@description('Tags to add to the resources')
param tags object

@description('Name of the ExpressRoute provider')
param serviceProviderName string

@description('ExpressRoute peering location')
param erpeeringLocation string


module expressroutecircuit 'br:bicepacrdevwcom.azurecr.io/bicep/modules/expressroutecircuit:2026.8.25.4' = {
    name: 'expressroutecircuit${env}${version}'
    params: {
      env: env
      system: system
      tags: tags
      serviceProviderName: serviceProviderName
      erpeeringLocation: erpeeringLocation
    }
}