Skip to content

Commit 0615cf8

Browse files
author
Michael Bender
committed
fixed issues and updated files
1 parent 2f1d565 commit 0615cf8

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

articles/load-balancer/quickstart-load-balancer-standard-internal-bicep.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: template-quickstart, subject-armqs, mode-arm, devx-track-bicep,engage
1212

1313
# Quickstart: Create an internal load balancer to load balance VMs using Bicep
1414

15-
This quickstart describes how to use Bicep to create an internal Azure load balancer.
15+
In this quickstart, you learn to use a BICEP file to create an internal; Azure load balancer. The internal load balancer distributes traffic to virtual machines in a virtual network located in the load balancer's backend pool. Along with the internal load balancer, this template creates a virtual network, network interfaces, a NAT Gateway, and an Azure Bastion instance.
1616

1717
:::image type="content" source="media/quickstart-load-balancer-standard-internal-portal/internal-load-balancer-resources.png" alt-text="Diagram of resources deployed for internal load balancer.":::
1818

@@ -24,18 +24,21 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
2424

2525
## Review the Bicep file
2626

27-
The Bicep file used in this quickstart is from the [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/2-vms-internal-load-balancer/).
27+
The Bicep file used in this quickstart is from the [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/internal-loadbalancer-create/main.bicep).
2828

29-
:::code language="bicep" source="~/quickstart-templates/quickstarts/microsoft.compute/2-vms-internal-load-balancer/main.bicep":::
29+
:::code language="bicep" source="~/quickstart-templates/quickstarts/microsoft.network/internal-loadbalancer-create/":::
3030

3131
Multiple Azure resources have been defined in the Bicep file:
3232

33-
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageaccounts): Virtual machine storage accounts for boot diagnostics.
34-
- [**Microsoft.Compute/availabilitySets**](/azure/templates/microsoft.compute/availabilitySets): Availability set for virtual machines.
3533
- [**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualNetworks): Virtual network for load balancer and virtual machines.
3634
- [**Microsoft.Network/networkInterfaces**](/azure/templates/microsoft.network/networkInterfaces): Network interfaces for virtual machines.
3735
- [**Microsoft.Network/loadBalancers**](/azure/templates/microsoft.network/loadBalancers): Internal load balancer.
38-
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualMachines): Virtual machines.
36+
- [**Microsoft.Network/natGateways**](/azure/templates/microsoft.network/natGateways)
37+
- [**Microsoft.Network/publicIPAddresses**](/azure/templates/microsoft.network/publicipaddresses): Public IP addresses for the NAT Gateway and Azure Bastion.
38+
- [**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines): Virtual machines in the backend pool.
39+
- [**Microsoft.Network/bastionHosts**](/azure/templates/microsoft.network/bastionhosts): Azure Bastion instance.
40+
- [**Microsoft.Network/virtualNetworks/subnets**](/azure/templates/microsoft.network/virtualnetworks/subnets): Subnets for the virtual network.
41+
- [**Microsoft.Storage/storageAccounts**](/azure/templates/microsoft.storage/storageaccounts): Storage account for the virtual machines.
3942

4043
## Deploy the Bicep file
4144

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: mvc, subject-bicepqs, mode-arm, template-quickstart, devx-track-bicep
1414

1515
# Quickstart: Create a public load balancer to load balance VMs using a Bicep file
1616

17-
In this quickstart, you learn to use a BICEP file to create an internal Azure load balancer. The internal load balancer distributes traffic to virtual machines in a virtual network located in the load balancer's backend pool. Along with the internal load balancer, this template creates a virtual network, network interfaces, a NAT Gateway, and an Azure Bastion instance.
17+
In this quickstart, you learn to use a BICEP file to create an public Azure load balancer. The public load balancer distributes traffic to virtual machines in a virtual network located in the load balancer's backend pool. Along with the public load balancer, this template creates a virtual network, network interfaces, a NAT Gateway, and an Azure Bastion instance.
1818

1919
:::image type="content" source="media/quickstart-load-balancer-standard-public-portal/public-load-balancer-resources.png" alt-text="Diagram of resources deployed for a standard public load balancer." lightbox="media/quickstart-load-balancer-standard-public-portal/public-load-balancer-resources.png":::
2020

@@ -71,6 +71,9 @@ To find more Bicep files or ARM templates that are related to Azure Load Balance
7171
```
7272
---
7373
74+
> [!NOTE]
75+
> The Bicep file deployment creates three availability zones. Availability zones are supported only in [certain regions](../availability-zones/az-overview.md). Use one of the supported regions. If you aren't sure, enter **EastUS**.
76+
7477
You're prompted to enter the following values:
7578
7679
- **projectName**: used for generating resource names.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: mvc, subject-armqs, mode-arm, template-quickstart, engagement-fy23, d
1515

1616
# Quickstart: Create a public load balancer to load balance VMs using an ARM template
1717

18-
This quickstart shows you how to deploy a standard load balancer to load balance virtual machines.
18+
This quickstart shows you how to deploy a standard load balancer to load balance virtual machines. The load balancer distributes traffic across multiple virtual machines in a backend pool. The template also creates a virtual network, network interfaces, a NAT Gateway, and an Azure Bastion instance.
1919

2020
:::image type="content" source="media/quickstart-load-balancer-standard-public-portal/public-load-balancer-resources.png" alt-text="Diagram of resources deployed for a standard public load balancer." lightbox="media/quickstart-load-balancer-standard-public-portal/public-load-balancer-resources.png":::
2121

0 commit comments

Comments
 (0)