Skip to content

Commit eda83ca

Browse files
committed
freshness
1 parent e974c7d commit eda83ca

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

articles/route-server/quickstart-configure-template.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,52 @@
11
---
22
title: 'Quickstart: Create an Azure Route Server - ARM template'
3-
description: This quickstart shows you how to create an Azure Route Server using Azure Resource Manager template (ARM template).
3+
description: In this quickstart, you learn how to create an Azure Route Server using Azure Resource Manager template (ARM template).
44
services: route-server
55
author: halkazwini
66
ms.service: route-server
77
ms.topic: quickstart
8-
ms.date: 04/05/2021
8+
ms.date: 04/18/2023
99
ms.author: halkazwini
10-
ms.custom: subject-armqs, mode-arm, template-quickstart, devx-track-arm-template
10+
ms.custom: template-quickstart, subject-armqs, mode-arm, template-quickstart, devx-track-arm-template, engagement-fy23
1111
---
1212

1313
# Quickstart: Create an Azure Route Server using an ARM template
1414

15-
This quickstart describes how to use an Azure Resource Manager template (ARM template) to deploy an Azure Route Server into a new or existing virtual network.
15+
This quickstart helps you learn how to use an Azure Resource Manager template (ARM template) to deploy an Azure Route Server into a new or existing virtual network.
1616

1717
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
1818

19-
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template will open in the Azure portal.
19+
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button to open the template in the Azure portal.
2020

2121
[![Deploy to Azure](../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.network%2Froute-server%2Fazuredeploy.json)
2222

2323
## Prerequisites
2424

25-
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
25+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
26+
- Review the [service limits for Azure Route Server](route-server-faq.md#limitations).
2627

2728
## Review the template
2829

2930
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/route-server).
3031

31-
In this quickstart, you'll deploy an Azure Route Server into a new or existing virtual network. A dedicated subnet named `RouteServerSubnet` will be created to host the Route Server. The Route Server will also be configured with the Peer ASN and Peer IP to establish a BGP peering.
32+
Using this template, you deploy an Azure Route Server into a new or existing virtual network. A dedicated subnet named `RouteServerSubnet` is created to host the Route Server. The Route Server will also be configured with the Peer ASN and Peer IP to establish a BGP peering.
3233

33-
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.network/route-server/azuredeploy.json" range="001-145" highlight="105-142":::
34+
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.network/route-server/azuredeploy.json" range="001-184" highlight="104-142":::
3435

3536
Multiple Azure resources have been defined in the template:
3637

37-
* [**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualNetworks)
38-
* [**Microsoft.Network/virtualNetworks/subnets**](/azure/templates/microsoft.network/virtualNetworks/subnets) (two subnets, one named `routeserversubnet`)
39-
* [**Microsoft.Network/virtualHubs**](/azure/templates/microsoft.network/virtualhubs) (Route Server deployment)
40-
* [**Microsoft.Network/virtualHubs/ipConfigurations**](/azure/templates/microsoft.network/virtualhubs/ipConfigurations)
41-
* [**Microsoft.Network/virtualHubs/bgpConnections**](/azure/templates/microsoft.network/virtualhubs/bgpconnections) (Peer ASN and Peer IP configuration)
38+
* [**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualNetworks?pivots=deployment-language-arm-template)
39+
* [**Microsoft.Network/virtualNetworks/subnets**](/azure/templates/microsoft.network/virtualNetworks/subnets?pivots=deployment-language-arm-template) (two subnets, one named `routeserversubnet`)
40+
* [**Microsoft.Network/virtualHubs**](/azure/templates/microsoft.network/virtualhubs?pivots=deployment-language-arm-template) (Route Server deployment)
41+
* [**Microsoft.Network/virtualHubs/ipConfigurations**](/azure/templates/microsoft.network/virtualhubs/ipConfigurations?pivots=deployment-language-arm-template)
42+
* [**Microsoft.Network/virtualHubs/bgpConnections**](/azure/templates/microsoft.network/virtualhubs/bgpconnections?pivots=deployment-language-arm-template) (Peer ASN and Peer IP configuration)
4243

4344

44-
To find more templates that are related to ExpressRoute, see [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Network&pageNumber=1&sort=Popular).
45+
To find more templates, see [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Network&pageNumber=1&sort=Popular).
4546

4647
## Deploy the template
4748

48-
1. Select **Try it** from the following code block to open Azure Cloud Shell, and then follow the instructions to sign in to Azure.
49+
1. Select **Open Cloudshell** from the following code block to open Azure Cloud Shell, and then follow the instructions to sign in to Azure.
4950

5051
```azurepowershell-interactive
5152
$projectName = Read-Host -Prompt "Enter a project name that is used for generating resource names"
@@ -96,7 +97,7 @@ Azure PowerShell is used to deploy the template. In addition to Azure PowerShell
9697
9798
## Clean up resources
9899
99-
When you no longer need the resources that you created with the Route Server, delete the resource group. This removes the Route Server and all the related resources.
100+
When you no longer need the resources that you created with the Route Server, delete the resource group to remove the Route Server and all the related resources.
100101
101102
To delete the resource group, call the `Remove-AzResourceGroup` cmdlet:
102103
@@ -108,9 +109,9 @@ Remove-AzResourceGroup -Name <your resource group name>
108109

109110
In this quickstart, you created a:
110111

111-
* Route Server
112112
* Virtual Network
113113
* Subnet
114+
* Route Server
114115

115116
After you create the Azure Route Server, continue to learn about how Azure Route Server interacts with ExpressRoute and VPN Gateways:
116117

0 commit comments

Comments
 (0)