Skip to content

Commit 8bd95a9

Browse files
Merge pull request #215077 from thisisanniefang/patch-43
Add changing AZ instructions
2 parents 118d4c1 + 1f36603 commit 8bd95a9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

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

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,31 @@ The following steps show how to prepare the internal load balancer for the move
326326
},
327327
```
328328
For more information on the differences between basic and standard sku load balancers, see [Azure Standard Load Balancer overview](./load-balancer-overview.md)
329+
330+
* **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.
331+
```json
332+
"frontendIPConfigurations": [
333+
{
334+
"name": "myfrontendIPinbound",
335+
"id": "[concat(resourceId('Microsoft.Network/loadBalancers', parameters('loadBalancers_myLoadBalancer_name')), '/frontendIPConfigurations/myfrontendIPinbound')]"
336+
"type": "Microsoft.Network/loadBalancers/frontendIPConfigurations",
337+
"properties": {
338+
"provisioningState": "Succeeded",
339+
"privateIPAddress": "10.0.0.1",
340+
"privateIPAllocationMethod": "Static",
341+
"subnet": {
342+
"id": "[concat(resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_myVNET1_name')), '/subnet-1')]"
343+
},
344+
"privateIPAddressVersion": "IPv4"
345+
},
346+
"zones": [
347+
"1",
348+
"2",
349+
"3"
350+
]
351+
}
352+
],
353+
```
329354

330355
* **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 **\<resource-group-name>.json** file:
331356

0 commit comments

Comments
 (0)