You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/environment/configure-zone-redundancy-environment.md
+58-3Lines changed: 58 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,19 +12,23 @@ ms.author: anaharris
12
12
13
13
[App Service Environment](./overview.md) is a single-tenant deployment of Azure App Service that integrates with an Azure virtual network. Each App Service Environment deployment requires a dedicated subnet, which you can't use for other resources.
14
14
15
-
This article shows you how to create and modify your App Service Environment zone redundancy settings. It also shows you how to set up and modifiy zone redundancy settings for your plan.
15
+
This article shows you how to create and modify your App Service Environment zone redundancy settings as well as how to check for zone redundancy support. It also shows you how to set up and modifiy zone redundancy settings for your plan.
16
16
17
17
To learn more details about how App Service Environment supports zone redundancy, see [Reliability in Azure App Service Environment](../../reliability/reliability-app-service-environment.md).
18
18
19
19
## Configure zone redundancy for an App Service Environment
20
20
21
21
-**To create a new App Service Environment with zone redundancy,** follow the steps in [Create an App Service Environment](creation.md). Make sure to select *Enabled* for **Zone redundancy**.
22
22
23
-
-**To enable or disable zone redundancy** for an existing App Service Environment, you can use Azure CLI or Bicep:
23
+
-**To enable or disable zone redundancy** for an existing App Service Environment, you can use the Azure portal, Azure CLI, or Bicep:
24
24
25
25
# [Azure portal](#tab/portal)
26
26
27
-
This operation is not yet supported in the Azure portal. Use the Azure CLI or Bicep instead.
27
+
1. In the [Azure portal](https://portal.azure.com), go to your App Service Environment.
28
+
1. Select **Settings > Configuration** in the left navigation pane.
29
+
1. Select **Zone redundant** if you wish to enable zone redundancy. Deselect if you wish to disable it.
30
+
31
+
:::image type="content" source="./media/configure-zone-redundancy/app-service-environment-enable-zone-redundancy.png" alt-text="Screenshot of zone redundancy property for an App Service Environment in the Azure portal.":::
28
32
29
33
# [Azure CLI](#tab/azurecli)
30
34
@@ -65,6 +69,57 @@ To learn more details about how App Service Environment supports zone redundancy
65
69
> [!NOTE]
66
70
> When you change the zone redundancy status of the App Service Environment, you initiate an upgrade that takes 12-24 hours to complete. During the upgrade process, you don't experience any downtime or performance problems.
67
71
72
+
### Check for zone redundancy support for an App Service Environment
73
+
74
+
To see whether an existing App Service Environment supports zone redundancy:
75
+
76
+
1. Get the maximum number of availability zones that the App Service Environment can use by using the Azure portal, Azure CLI, or Bicep/Resource Manager:
77
+
78
+
# [Azure portal](#tab/portal)
79
+
80
+
1. In the [Azure portal](https://portal.azure.com), navigate to your App Service Environment.
81
+
82
+
1. Select **Settings > Configuration** in the left navigation pane.
83
+
84
+
The maximum number of zones that your App Service Environment can use is shown in **Maximum available zones**.
85
+
86
+
:::image type="content" source="./media/configure-zone-redundancy/app-service-environment-maximum-zones.png" alt-text="Screenshot of maximum available zones property in the Configuration blade in the Azure portal for an App Service Environment.":::
87
+
88
+
# [Azure CLI](#tab/azurecli)
89
+
90
+
Query the environment's `maximumNumberOfZones` property:
91
+
92
+
```azurecli
93
+
az appservice ase show \
94
+
-n <app-service-environment-name> \
95
+
-g <resource-group-name> \
96
+
--query maximumNumberOfZones
97
+
```
98
+
99
+
# [Bicep](#tab/bicep)
100
+
101
+
Query the environment's `maximumNumberOfZones` property:
\* If you're on a plan or a stamp that doesn't support availability zones, you must create a new App Service Environment in a new resource group so that you land on the App Service footprint that supports zones.
122
+
68
123
## Configure Isolated v2 App Service plans with zone redundancy
69
124
70
125
All App Service plans created in an App Service Environment must be in an Isolated v2 pricing tier.
0 commit comments