Skip to content

Commit 6e227d4

Browse files
Merge pull request #211217 from thisisanniefang/patch-38
Add zone parameter, remove Basic SKU references
2 parents 0abbe85 + 4b8a37d commit 6e227d4

File tree

1 file changed

+31
-9
lines changed

1 file changed

+31
-9
lines changed

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

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ The following procedures show how to prepare the external load balancer for the
7070
"name": "[parameters('publicIPAddresses_myPubIP_name')]",
7171
"location": "<target-region>",
7272
"sku": {
73-
"name": "Basic",
73+
"name": "Standard",
7474
"tier": "Regional"
7575
},
7676
"properties": {
7777
"provisioningState": "Succeeded",
7878
"resourceGuid": "7549a8f1-80c2-481a-a073-018f5b0b69be",
7979
"ipAddress": "52.177.6.204",
8080
"publicIPAddressVersion": "IPv4",
81-
"publicIPAllocationMethod": "Dynamic",
81+
"publicIPAllocationMethod": "Static",
8282
"idleTimeoutInMinutes": 4,
8383
"ipTags": []
8484
}
@@ -100,14 +100,31 @@ The following procedures show how to prepare the external load balancer for the
100100
"name": "[parameters('publicIPAddresses_myPubIP_name')]",
101101
"location": "<target-region>",
102102
"sku": {
103-
"name": "Basic",
103+
"name": "Standard",
104104
"tier": "Regional"
105105
},
106106
```
107+
* **Availability zone**. You can change the zone(s) of the public IP by changing the **zone** property. If the zone property isn't specified, the public IP will be created as no-zone. You can specify a single zone to create a zonal public IP or all 3 zones for a zone-redundant public IP.
107108

108-
For information on the differences between basic and standard SKU public IPs, see [Create, change, or delete a public IP address](../virtual-network/ip-services/virtual-network-public-ip-address.md).
109+
```json
110+
"resources": [
111+
{
112+
"type": "Microsoft.Network/publicIPAddresses",
113+
"apiVersion": "2019-06-01",
114+
"name": "[parameters('publicIPAddresses_myPubIP_name')]",
115+
"location": "<target-region>",
116+
"sku": {
117+
"name": "Standard",
118+
"tier": "Regional"
119+
},
120+
"zones": [
121+
"1",
122+
"2",
123+
"3"
124+
],
125+
```
109126

110-
* **Public IP allocation method** and **Idle timeout**. You can change the public IP allocation method by changing the **publicIPAllocationMethod** property from **Dynamic** to **Static** or from **Static** to **Dynamic**. You can change the idle timeout by changing the **idleTimeoutInMinutes** property to the desired value. The default is **4**.
127+
* **Public IP allocation method** and **Idle timeout**. You can change the public IP allocation method by changing the **publicIPAllocationMethod** property from **Static** to **Dynamic** or from **Dynamic** to **Static**. You can change the idle timeout by changing the **idleTimeoutInMinutes** property to the desired value. The default is **4**.
111128

112129
```json
113130
"resources": [
@@ -117,15 +134,20 @@ The following procedures show how to prepare the external load balancer for the
117134
"name": "[parameters('publicIPAddresses_myPubIP_name')]",
118135
"location": "<target-region>",
119136
"sku": {
120-
"name": "Basic",
137+
"name": "Standard",
121138
"tier": "Regional"
122139
},
140+
"zones": [
141+
"1",
142+
"2",
143+
"3"
144+
],
123145
"properties": {
124146
"provisioningState": "Succeeded",
125147
"resourceGuid": "7549a8f1-80c2-481a-a073-018f5b0b69be",
126148
"ipAddress": "52.177.6.204",
127149
"publicIPAddressVersion": "IPv4",
128-
"publicIPAllocationMethod": "Dynamic",
150+
"publicIPAllocationMethod": "Static",
129151
"idleTimeoutInMinutes": 4,
130152
"ipTags": []
131153

@@ -238,7 +260,7 @@ The following procedures show how to prepare the external load balancer for the
238260

239261
11. You can also change other parameters in the template if you want to or need to, depending on your requirements:
240262

241-
* **SKU**. You can change the SKU of the external load balancer in the configuration from standard to basic or from basic to standard by changing the **name** property under **sku** in the template.json file:
263+
* **SKU**. You can change the SKU of the external load balancer in the configuration from Standard to Basic or from Basic to Standard by changing the **name** property under **sku** in the template.json file:
242264

243265
```json
244266
"resources": [
@@ -410,4 +432,4 @@ In this tutorial, you moved an Azure external load balancer from one region to a
410432

411433

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

0 commit comments

Comments
 (0)