This template configure ExpressRoute Microsoft peering, deploy an Azure VNet with Expressroute gateway and link the VNet to the ExpressRoute circuit
This Azure Resource Manager template was created by a member of the community and not by Microsoft. Each Resource Manager template is licensed to you under a license agreement by its owner, not Microsoft. Microsoft is not responsible for Resource Manager templates provided and licensed by community members and does not screen for security, compatibility, or performance. Community Resource Manager templates are not supported under any Microsoft support program or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
location | Location for all resources deployed in the Bicep file |
erpeeringLocation | ExpressRoute peering location |
erCircuitName | Name of the ExpressRoute circuit |
serviceProviderName | Name of the ExpressRoute provider |
erSKU_Tier | Tier ExpressRoute circuit |
erSKU_Family | Billing model ExpressRoute circuit |
bandwidthInMbps | Bandwidth ExpressRoute circuit |
peerASN | autonomous system number used to create private peering between the customer edge router and MSEE routers |
primaryPeerAddressPrefix | point-to-point network prefix of primary link between the customer edge router and MSEE router |
secondaryPeerAddressPrefix | point-to-point network prefix of secondary link between the customer edge router and MSEE router |
vlanId | VLAN Id used between the customer edge routers and MSEE routers. primary and secondary link have the same VLAN Id |
vnetName | name of the Virtual Network |
subnet1Name | name of the subnet |
vnetAddressSpace | address space assigned to the Virtual Network |
subnet1Prefix | network prefix assigned to the subnet |
gatewaySubnetPrefix | network prefixes assigned to the gateway subnet. It has to be a network prefix with mask /27 or larger |
gatewayName | name of the ExpressRoute Gateway |
gatewaySku | ExpressRoute Gateway SKU |
Use the template
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and configure Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/expressroute-private-peering-vnet/azuredeploy.json
Command line
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and Configure the Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/expressroute-private-peering-vnet/azuredeploy.json