Skip to content

Commit 6e01511

Browse files
authored
Merge pull request #160547 from BhargaviAnnadevara-MSFT/patch-130
(AzureCXP) Fixes MicrosoftDocs/azure-docs#76045
2 parents 69a5c30 + aba363b commit 6e01511

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

articles/app-service/environment/zone-redundancy.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -53,29 +53,29 @@ The only change needed in an ARM template to specify a zonal ILB ASE is the new
5353
The example ARM template snippet below shows the new ***zones*** property specifying that the ILB ASE should be pinned to zone 2.
5454

5555
```
56-
"resources": [
57-
{
58-
"type": "Microsoft.Web/hostingEnvironments",
59-
"kind": "ASEV2",
60-
"name": "yourASENameHere",
61-
"apiVersion": "2015-08-01",
62-
"location": "your location here",
63-
"zones": [
56+
"resources": [
57+
{
58+
"type": "Microsoft.Web/hostingEnvironments",
59+
"kind": "ASEV2",
60+
"name": "yourASENameHere",
61+
"apiVersion": "2015-08-01",
62+
"location": "your location here",
63+
"zones": [
6464
"2"
65-
],
66-
"properties": {
67-
"name": "yourASENameHere",
68-
"location": "your location here",
69-
"ipSslAddressCount": 0,
70-
"internalLoadBalancingMode": "3",
71-
"dnsSuffix": "contoso-internal.com",
72-
"virtualNetwork": {
73-
"Id": "/subscriptions/your-subscription-id-here/resourceGroups/your-resource-group-here/providers/Microsoft.Network/virtualNetworks/your-vnet-name-here",
74-
"Subnet": "yourSubnetNameHere"
75-
}
76-
}
77-
}
78-
]
65+
],
66+
"properties": {
67+
"name": "yourASENameHere",
68+
"location": "your location here",
69+
"ipSslAddressCount": 0,
70+
"internalLoadBalancingMode": "3",
71+
"dnsSuffix": "contoso-internal.com",
72+
"virtualNetwork": {
73+
"Id": "/subscriptions/your-subscription-id-here/resourceGroups/your-resource-group-here/providers/Microsoft.Network/virtualNetworks/your-vnet-name-here",
74+
"Subnet": "yourSubnetNameHere"
75+
}
76+
}
77+
}
78+
]
7979
```
8080

8181
To make your apps zone redundant, you need to deploy two zonal ILB ASEs. The two zonal ILB ASEs must be in separate availability zones. You then need to deploy your apps into each of the ILB ASEs. After your apps are created, you need to configure a load balancing solution. The recommended solution is to deploy a [zone redundant Application Gateway](../../application-gateway/application-gateway-autoscaling-zone-redundant.md) upstream of the zonal ILB ASEs.

0 commit comments

Comments
 (0)