Skip to content

Commit 806e088

Browse files
committed
edits
1 parent ac53951 commit 806e088

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

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

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
---
2-
title: Configure an App Service Environment and Isolated v2 App Service Plans for Zone Redundancy
3-
description: Learn how to configure zone redundancy for App Service Environments and Isolated v2 App Service plan to boost reliabilty and minimize service disruption.
2+
title: Configure App Service Environments and Isolated v2 App Service Plans for Zone Redundancy
3+
description: Learn how to configure zone redundancy for App Service Environments and Isolated v2 App Service plans to boost reliabilty and minimize service disruption.
44
ms.topic: conceptual
55
ms.service: azure-app-service
66
ms.date: 07/16/2025
77
author: anaharris
88
ms.author: anaharris
99

1010
---
11-
# Configure an App Service Environment and Isolated v2 App Service plans for zone redundancy
11+
# Configure App Service Environments and Isolated v2 App Service plans for zone redundancy
1212

1313
An [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 that other resources can't use.
1414

1515
This article describes how to create and modify App Service Environment zone redundancy settings. It also describes how to set up and modify zone redundancy settings for your plan.
1616

17-
For more information about how an App Service Environment supports zone redundancy, see [Reliability in an App Service Environment](../../reliability/reliability-app-service-environment.md).
17+
For more information about zone redundancy, see [Reliability in an App Service Environment](../../reliability/reliability-app-service-environment.md).
1818

1919
## Configure zone redundancy for an App Service Environment
2020

21-
- **To create a new App Service Environment with zone redundancy**, follow the steps to [create an App Service Environment](creation.md). Make sure to select *Enabled* for **Zone redundancy**.
21+
- **To create a new App Service Environment that includes zone redundancy**, follow the steps to [create an App Service Environment](creation.md). Make sure to select **Enabled** for **Zone redundancy**.
2222

2323
- **To enable or disable zone redundancy** for an existing App Service Environment, use the Azure CLI or Bicep.
2424

@@ -63,27 +63,28 @@ For more information about how an App Service Environment supports zone redundan
6363
---
6464
6565
> [!NOTE]
66-
> A zone redundancy status change of an App Service Environment takes 12 to 24 hours to complete. During the upgrade process, no downtime or performance problems occur.
66+
> A zone redundancy status change in an App Service Environment takes 12 to 24 hours to complete. During the upgrade process, no downtime or performance problems occur.
6767
6868
## Configure Isolated v2 App Service plans with zone redundancy
6969
7070
All App Service plans created in an App Service Environment must use the Isolated v2 pricing tier.
7171
72-
If you enable your App Service Environment to be zone redundant, you also set the Isolated v2 App Service plans as zone redundant. Each plan has its own independent zone redundancy setting, so you can manually enable or disable zone redundancy on specific plans in an App Service Environment, as long as the environment is configured to be zone redundant.
72+
If you enable your App Service Environment to be zone redundant, you must also set the Isolated v2 App Service plans as zone redundant. Each plan has its own independent zone redundancy setting, so you can manually enable or disable zone redundancy on specific plans in an App Service Environment, as long as the environment is configured to be zone redundant.
7373
74-
- **To create a new Isolated v2 App Service plan with zone redundancy**, use the Azure portal, Azure CLI, or Bicep.
74+
- **To create a new Isolated v2 App Service plan with zone redundancy**, use the Azure portal, the Azure CLI, or Bicep.
7575
7676
# [Azure portal](#tab/portal)
7777
78-
Follow the guidance to [create an App Service plan](../app-service-plan-manage.md#create-an-app-service-plan). Use the following settings:
78+
Follow the guidance to [create an App Service plan](../app-service-plan-manage.md#create-an-app-service-plan). Configure the following settings:
7979
8080
- For **Region**, select your App Service Environment.
81-
- For **Pricing plan**, select *Isolated v2*.
81+
- For **Pricing plan**, select **Isolated v2**.
8282
- For **Zone redundancy**, select **Enabled**.
8383
8484
# [Azure CLI](#tab/azurecli)
8585
86-
Set the `--zone-redundant` argument. You must also set the `--number-of-workers` argument, which is the number of instances, to a value of 2 or more.
86+
- Set the `--zone-redundant` argument.
87+
- Set the `--number-of-workers` argument, which is the number of instances, to a value of 2 or more.
8788
8889
```azurecli
8990
az appservice plan create \
@@ -97,7 +98,8 @@ If you enable your App Service Environment to be zone redundant, you also set th
9798
9899
# [Bicep](#tab/bicep)
99100
100-
Set the `zoneRedundant` property to `true`. You must also define the `sku.capacity` property to a value of 2 or more. If you don't define the `sku.capacity` property, the value defaults to 1.
101+
- Set the `zoneRedundant` property to `true`.
102+
- Set the `sku.capacity` property to a value of 2 or more. If you don't define the `sku.capacity` property, the value defaults to 1.
101103
102104
```bicep
103105
resource appServicePlan 'Microsoft.Web/serverfarms@2024-11-01' = {
@@ -135,7 +137,8 @@ If you enable your App Service Environment to be zone redundant, you also set th
135137
136138
# [Azure CLI](#tab/azurecli)
137139
138-
- To *enable zone redundancy*, set the `zoneRedundant` property to `true`. You must also set the `sku.capacity` argument, which is the number of instances, to a value of 2 or more.
140+
- To *enable zone redundancy*, set the `zoneRedundant` property to `true`.
141+
- Set the `sku.capacity` argument, which is the number of instances, to a value of 2 or more.
139142
140143
```azurecli
141144
az appservice plan update \
@@ -155,7 +158,8 @@ If you enable your App Service Environment to be zone redundant, you also set th
155158
156159
# [Bicep](#tab/bicep)
157160
158-
- To *enable zone redundancy*, set the `zoneRedundant` property to `true`. You must also define the `sku.capacity` property to a value of 2 or more. If you don't define the `sku.capacity` property, the value defaults to 1.
161+
- To *enable zone redundancy*, set the `zoneRedundant` property to `true`.
162+
- Set the `sku.capacity` property to a value of 2 or more. If you don't define the `sku.capacity` property, the value defaults to 1.
159163
160164
```bicep
161165
resource appServicePlan 'Microsoft.Web/serverfarms@2024-11-01' = {
@@ -183,5 +187,5 @@ If you enable your App Service Environment to be zone redundant, you also set th
183187
184188
## Related content
185189
186-
- [Configure App Service plans for reliability](../configure-zone-redundancy.md)
190+
- [Configure App Service plans for zone redundancy](../configure-zone-redundancy.md)
187191
- [Reliability in App Service Environments](../../reliability/reliability-app-service-environment.md)

articles/reliability/reliability-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ If you enable availability zones but specify a capacity of less than two, the pl
7979

8080
### Configure availability zone support
8181

82-
- **Create a new zone-redundant App Service plan.** To learn how to create a new zone-redundant App Service plan, see [Create a new App Service plan with zone redundancy](../app-service/configure-zone-redundancy.md#create-a-new-app-service-plan-with-zone-redundancy).
82+
- **Create a new zone-redundant App Service plan.** To learn how to create a new zone-redundant App Service plan, see [Create a new App Service plan with zone redundancy](../app-service/configure-zone-redundancy.md#create-a-new-app-service-plan-that-includes-zone-redundancy).
8383

8484
- **Enable or disable zone redundancy on an existing App Service plan.** To learn how to enable or disable an existing App Service plan to zone redundancy, see [Enable or disable an existing App Service plan to zone redundancy](../app-service/configure-zone-redundancy.md#set-zone-redundancy-for-an-existing-app-service-plan).
8585

0 commit comments

Comments
 (0)