Overview
|
|
| Name |
expressroutecircuit |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/expressroutecircuit:2026.9.9.2 |
| Last updated |
2026-09-09 12:48:46:+00:00 |
| Created |
2026-09-09 12:48:46:+00:00 |
| Digest |
sha256:0e3525bab1bf2f9d978efff6043b318c6a5f359828be4dd599e5f78e222fcf8c |
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.9.9.2' = {
name: 'expressroutecircuit${env}${version}'
params: {
env: env
system: system
tags: tags
serviceProviderName: serviceProviderName
erpeeringLocation: erpeeringLocation
}
}