Skip to content

Commit 1d3c432

Browse files
authored
Merge pull request #79104 from KumudD/lbtemplateupdate
Create Standard load balancer - ARM template
2 parents 259107b + 79251fa commit 1d3c432

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

articles/load-balancer/quickstart-load-balancer-standard-public-template.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
2727

2828
In this section, you create a Standard Load Balancer that helps load balance virtual machines. Standard Load Balancer only supports a Standard Public IP address. When you create a Standard Load Balancer, and you must also create a new Standard Public IP address that is configured as the frontend (named as *LoadBalancerFrontend* by default) for the Standard Load Balancer. There are many methods that can be used to create a standard load balancer. In this quickstart, you use Azure PowerShell to deploy a [Resource Manager template](https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/101-load-balancer-standard-create/azuredeploy.json). Resource Manager templates are JSON files that define the resources you need to deploy for your solution. To understand the concepts associated with deploying and managing your Azure solutions, see [Azure Resource Manager documentation](/azure/azure-resource-manager/). To find more Azure Load Balancer related template, see [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Network&pageNumber=1&sort=Popular).
2929

30-
To deploy the template, select **Try it** to open the Azure Cloud shell, and then paste the following PowerShell script into the shell window. To paste the code, right-click the shell window and then select **Paste**.
30+
To deploy the template, select **Try it** to open the Azure Cloud shell, and then paste the following PowerShell script into the shell window. To paste the code, right-click the shell window and then select **Paste**. For a list of regions that support availability zone for Azure virtual machines, see [here](../availability-zones/az-overview.md).
3131

3232
```azurepowershell-interactive
3333
$projectName = Read-Host -Prompt "Enter a project name with 12 or less letters or numbers that is used to generate Azure resource names"
@@ -40,9 +40,13 @@ $templateUri = "https://raw.githubusercontent.com/Azure/azure-docs-json-samples/
4040
4141
New-AzResourceGroup -Name $resourceGroupName -Location $location
4242
New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateUri $templateUri -projectName $projectName -location $location -adminUsername $adminUsername -adminPassword $adminPassword
43+
44+
Write-Host "Press [ENTER] to continue."
45+
4346
```
4447

45-
Notice the resource group name is the project name with **rg** appended. You need the resource group name in the next section. It takes a few minutes to create the resources.
48+
>[!NOTE]
49+
>The resource group name is the project name with **rg** appended. You need the resource group name in the next section. It takes a few minutes to create the resources.
4650
4751
## Test the Load Balancer
4852

0 commit comments

Comments
 (0)