Skip to content

Commit 1a2320d

Browse files
authored
Merge pull request #178200 from paulth1/four-app-service-articles
edit pass: Four app service articles
2 parents a71d3aa + 3f4d72e commit 1a2320d

8 files changed

+162
-156
lines changed
Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Enable integration with Azure virtual network.
3-
description: This how-to article will walk you through enabling virtual network integration on an App Service Web App
2+
title: Enable integration with an Azure virtual network
3+
description: This how-to article walks you through enabling virtual network integration on an Azure App Service web app.
44
keywords: vnet integration
55
author: madsd
66
ms.author: madsd
@@ -10,47 +10,46 @@ ms.date: 10/20/2021
1010

1111
# Enable virtual network integration in Azure App Service
1212

13-
Through integrating with an Azure virtual network (VNet) from your [App Service app](./overview.md), you can reach private resources from your app within the virtual network. The VNet Integration feature has two variations:
13+
Through integrating with an Azure virtual network (VNet) from your [Azure App Service app](./overview.md), you can reach private resources from your app within the virtual network. The VNet integration feature has two variations:
1414

15-
* Regional VNet integration: Connect to Azure virtual networks in the same region. You must have a dedicated subnet in the VNet you're integrating with.
16-
* Gateway-required VNet integration: When you connect directly to VNet in other regions or to a classic virtual network in the same region, you must use the gateway-required VNet integration.
15+
* **Regional virtual network integration**: Connect to Azure virtual networks in the same region. You must have a dedicated subnet in the virtual network you're integrating with.
16+
* **Gateway-required virtual network integration**: When you connect directly to a virtual network in other regions or to a classic virtual network in the same region, you must use gateway-required virtual network integration.
1717

18-
This how-to article will describe how to set up regional VNet integration.
18+
This article describes how to set up regional virtual network integration.
1919

2020
## Prerequisites
2121

22-
The VNet Integration requires:
23-
- An App Service pricing tier [supporting VNet integration](./overview-vnet-integration.md).
22+
The VNet integration feature requires:
23+
24+
- An App Service pricing tier [that supports virtual network integration](./overview-vnet-integration.md).
2425
- A virtual network in the same region with an empty subnet.
2526

26-
The subnet must be delegated to Microsoft.Web/serverFarms. If the delegation isn't done before integration, the provisioning process will configure this delegation. The subnet must be allocated an IPv4 `/28` block (16 addresses). It is actually recommended to have a minimum of 64 addresses (IPv4 `/26` block) to allow for maximum horizontal scale.
27+
The subnet must be delegated to Microsoft.Web/serverFarms. If the delegation isn't done before integration, the provisioning process will configure this delegation. The subnet must be allocated an IPv4 `/28` block (16 addresses). We recommend that you have a minimum of 64 addresses (IPv4 `/26` block) to allow for maximum horizontal scale.
2728

2829
## Configure in the Azure portal
2930

30-
1. Go to the **Networking** UI in the App Service portal. Under **Outbound Traffic**, select **VNet integration**.
31+
1. Go to **Networking** in the App Service portal. Under **Outbound Traffic**, select **VNet integration**.
3132

3233
1. Select **Add VNet**.
3334

34-
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-app.png" alt-text="Select VNet Integration":::
35-
36-
1. The drop-down list contains all of the virtual networks in your subscription in the same region.
35+
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-app.png" alt-text="Screenshot that shows selecting VNet integration.":::
3736

38-
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-add-vnet.png" alt-text="Select the VNet":::
37+
1. The dropdown list contains all the virtual networks in your subscription in the same region. Select an empty preexisting subnet or create a new subnet.
3938

40-
* Select an empty pre-existing subnet or create a new subnet.
39+
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-add-vnet.png" alt-text="Screenshot that shows selecting the virtual network.":::
4140

42-
During the integration, your app is restarted. When integration is finished, you'll see details on the VNet you're integrated with.
41+
During the integration, your app is restarted. When integration is finished, you'll see details on the virtual network you're integrated with.
4342

44-
## Configure with Azure CLI
43+
## Configure with the Azure CLI
4544

46-
You can also configure VNet integration using Azure CLI:
45+
You can also configure virtual network integration by using the Azure CLI:
4746

4847
```azurecli-interactive
4948
az webapp vnet-integration add --resource-group <group-name> --name <app-name> --vnet <vnet-name> --subnet <subnet-name>
5049
```
5150

5251
> [!NOTE]
53-
> The command will check if subnet is delegated to Microsoft.Web/serverFarms and apply the necessary delegation if this is not configured. If this has already been configured, and you do not have permissions to check this, or the virtual network is in another subscription, you can use the `--skip-delegation-check` parameter to bypass the validation.
52+
> The command checks if the subnet is delegated to Microsoft.Web/serverFarms and applies the necessary delegation if it isn't configured. If the subnet was configured, and you don't have permissions to check it, or if the virtual network is in another subscription, you can use the *--skip-delegation-check* parameter to bypass the validation.
5453
5554
## Configure with Azure PowerShell
5655

@@ -71,5 +70,5 @@ $webApp | Set-AzResource -Force
7170

7271
## Next steps
7372

74-
- [Configure VNet integration routing](./configure-vnet-integration-routing.md)
75-
- [General Networking overview](./networking-features.md)
73+
- [Configure virtual network integration routing](./configure-vnet-integration-routing.md)
74+
- [General networking overview](./networking-features.md)

articles/app-service/configure-vnet-integration-routing.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Configure virtual network integration with application routing.
3-
description: This how-to article will walk you through configure app routing on a regional VNet integration.
3+
description: This how-to article walks you through configuring app routing on a regional virtual network integration.
44
author: madsd
55
ms.author: madsd
66
ms.topic: how-to
@@ -9,28 +9,28 @@ ms.date: 10/20/2021
99

1010
# Manage Azure App Service virtual network integration routing
1111

12-
When configuring application routing, you can either route all traffic or only private traffic (also known as [RFC1918](https://datatracker.ietf.org/doc/html/rfc1918#section-3) traffic) into your Azure virtual network (VNet). This how-to article will describe how to configure application routing.
12+
When you configure application routing, you can either route all traffic or only private traffic (also known as [RFC1918](https://datatracker.ietf.org/doc/html/rfc1918#section-3) traffic) into your Azure virtual network (VNet). This article describes how to configure application routing.
1313

1414
## Prerequisites
1515

1616
Your app is already integrated using the regional VNet integration feature.
1717

1818
## Configure in the Azure portal
1919

20-
You can use the following steps to disable Route All in your app through the portal:
20+
Follow these steps to disable **Route All** in your app through the portal.
2121

22-
:::image type="content" source="./media/configure-vnet-integration-routing/vnetint-route-all-enabled.png" alt-text="Route All enabled":::
22+
:::image type="content" source="./media/configure-vnet-integration-routing/vnetint-route-all-enabled.png" alt-text="Screenshot that shows enabling Route All.":::
2323

24-
1. Go to the **Networking** > **VNet integration** UI in your app portal.
25-
1. Set **Route All** to Disabled.
24+
1. Go to **Networking** > **VNet integration** in your app portal.
25+
1. Set **Route All** to **Disabled**.
2626

27-
:::image type="content" source="./media/configure-vnet-integration-routing/vnetint-route-all-disabling.png" alt-text="Disable Route All":::
27+
:::image type="content" source="./media/configure-vnet-integration-routing/vnetint-route-all-disabling.png" alt-text="Screenshot that shows disabling Route All.":::
2828

2929
1. Select **Yes** to confirm.
3030

31-
## Configure with Azure CLI
31+
## Configure with the Azure CLI
3232

33-
You can also configure Route All using Azure CLI (the minimum `az version` required is 2.27.0):
33+
You can also configure **Route All** by using the Azure CLI. The minimum az version required is 2.27.0.
3434

3535
```azurecli-interactive
3636
az webapp config set --resource-group <group-name> --name <app-name> --vnet-route-all-enabled [true|false]
@@ -50,5 +50,5 @@ Set-AzResource -ResourceId ($webApp.Id + "/config/web") -Properties @{ vnetRoute
5050

5151
## Next steps
5252

53-
- [Enable VNet integration](./configure-vnet-integration-enable.md)
54-
- [General Networking overview](./networking-features.md)
53+
- [Enable virtual network integration](./configure-vnet-integration-enable.md)
54+
- [General networking overview](./networking-features.md)

0 commit comments

Comments
 (0)