Skip to content

Commit dc8175c

Browse files
authored
Merge pull request #212123 from thisisanniefang/patch-42
Portal internal LB: add zone instructions
2 parents 45c9105 + 51bd4aa commit dc8175c

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

articles/load-balancer/move-across-regions-internal-load-balancer-portal.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,37 @@ The following steps show how to prepare the internal load balancer for the move
270270
```
271271
For more information on the differences between basic and standard sku load balancers, see [Azure Standard Load Balancer overview](./load-balancer-overview.md)
272272

273+
* **Availability zone** - You can change the zone(s) of the load balancer's frontend by changing the **zone** property. If the zone property isn't specified, the frontend will be created as no-zone. You can specify a single zone to create a zonal frontend or all 3 zones for a zone-redundant frontend.
274+
275+
```json
276+
"frontendIPConfigurations": [
277+
{
278+
"name": "myfrontendIPinbound",
279+
"etag": "W/\"39e5e9cd-2d6d-491f-83cf-b37a259d86b6\"",
280+
"type": "Microsoft.Network/loadBalancers/frontendIPConfigurations",
281+
"properties": {
282+
"provisioningState": "Succeeded",
283+
"privateIPAddress": "10.0.0.6",
284+
"privateIPAllocationMethod": "Dynamic",
285+
"subnet": {
286+
"id": "[concat(parameters('virtualNetworks_myVNET2_internalid'), '/subnet-1')]"
287+
},
288+
"loadBalancingRules": [
289+
{
290+
"id": "[concat(resourceId('Microsoft.Network/loadBalancers', parameters('loadBalancers_myLoadBalancer_name')), '/loadBalancingRules/myInboundRule')]"
291+
}
292+
],
293+
"privateIPAddressVersion": "IPv4"
294+
},
295+
"zones": [
296+
"1",
297+
"2",
298+
"3"
299+
]
300+
},
301+
```
302+
For more about availability zones, see [Regions and availability zones in Azure](../availability-zones/az-overview.md).
303+
273304
* **Load balancing rules** - You can add or remove load balancing rules in the configuration by adding or removing entries to the **loadBalancingRules** section of the **template.json** file:
274305

275306
```json
@@ -398,4 +429,4 @@ In this tutorial, you moved an Azure internal load balancer from one region to a
398429

399430

400431
- [Move resources to a new resource group or subscription](../azure-resource-manager/management/move-resource-group-and-subscription.md)
401-
- [Move Azure VMs to another region](../site-recovery/azure-to-azure-tutorial-migrate.md)
432+
- [Move Azure VMs to another region](../site-recovery/azure-to-azure-tutorial-migrate.md)

0 commit comments

Comments
 (0)