Skip to content

Commit 33b152b

Browse files
committed
VNet
1 parent 64eac69 commit 33b152b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/app-service/networking/nat-gateway-integration.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,36 +26,36 @@ For more information and pricing. Go to the [NAT gateway overview](../../virtual
2626
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-overview.png" alt-text="Diagram shows Internet traffic flowing to a NAT gateway in an Azure Virtual Network.":::
2727

2828
> [!Note]
29-
> * Using NAT gateway with App Service is dependent on regional VNet Integration, and therefore **Standard**, **Premium**, **PremiumV2** or **PremiumV3** App Service plan is required.
29+
> * Using NAT gateway with App Service is dependent on virtual network integration, and therefore **Standard**, **Premium**, **PremiumV2** or **PremiumV3** App Service plan is required.
3030
> * When using NAT gateway together with App Service, all traffic to Azure Storage must be using private endpoint or service endpoint.
3131
> * NAT gateway cannot be used together with App Service Environment v1 or v2.
3232
3333
## Configuring NAT gateway integration
3434

3535
To configure NAT gateway integration with App Service, you need to complete the following steps:
3636

37-
* Configure regional VNet Integration with your app as described in [Integrate your app with an Azure virtual network](../overview-vnet-integration.md)
38-
* Ensure [Route All](../overview-vnet-integration.md#routes) is enabled for your VNet Integration so the Internet bound traffic will be affected by routes in your VNet.
39-
* Provision a NAT gateway with a public IP and associate it with the VNet Integration subnet.
37+
* Configure regional virtual network integration with your app as described in [Integrate your app with an Azure virtual network](../overview-vnet-integration.md)
38+
* Ensure [Route All](../overview-vnet-integration.md#routes) is enabled for your virtual network integration so the Internet bound traffic will be affected by routes in your virtual network.
39+
* Provision a NAT gateway with a public IP and associate it with the virtual network integration subnet.
4040

4141
Set up NAT gateway through the portal:
4242

43-
1. Go to the **Networking** UI in the App Service portal and select VNet Integration in the Outbound Traffic section. Ensure that your app is integrated with a subnet and **Route All** has been enabled.
44-
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-route-all-enabled.png" alt-text="Screenshot of Route All enabled for VNet Integration.":::
43+
1. Go to the **Networking** UI in the App Service portal and select virtaul network integration in the Outbound Traffic section. Ensure that your app is integrated with a subnet and **Route All** has been enabled.
44+
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-route-all-enabled.png" alt-text="Screenshot of Route All enabled for virtual network integration.":::
4545
1. On the Azure portal menu or from the **Home** page, select **Create a resource**. The **New** window appears.
4646
1. Search for "NAT gateway" and select it from the list of results.
4747
1. Fill in the **Basics** information and pick the region where your app is located.
4848
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-create-basics.png" alt-text="Screenshot of Basics tab in Create NAT gateway.":::
4949
1. In the **Outbound IP** tab, create a new or select an existing public IP.
5050
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-create-outbound-ip.png" alt-text="Screenshot of Outbound IP tab in Create NAT gateway.":::
51-
1. In the **Subnet** tab, select the subnet used for VNet Integration.
51+
1. In the **Subnet** tab, select the subnet used for virtual network integration.
5252
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-create-subnet.png" alt-text="Screenshot of Subnet tab in Create NAT gateway.":::
5353
1. Fill in tags if needed and **Create** the NAT gateway. After the NAT gateway is provisioned, click on the **Go to resource group** and select the new NAT gateway. You can to see the public IP that your app will use for outbound Internet-facing traffic in the Outbound IP blade.
5454
:::image type="content" source="./media/nat-gateway-integration/nat-gateway-public-ip.png" alt-text="Screenshot of Outbound IP blade in the NAT gateway portal.":::
5555

56-
If you prefer using CLI to configure your environment, these are the important commands. As a prerequisite, you should create a Web App with VNet Integration configured.
56+
If you prefer using CLI to configure your environment, these are the important commands. As a prerequisite, you should create an app with virtual network integration configured.
5757

58-
Ensure **Route All** is configured for your VNet Integration (*Note*: minimum `az version` required is 2.27):
58+
Ensure **Route All** is configured for your virtual network integration:
5959

6060
```azurecli-interactive
6161
az webapp config set --resource-group [myResourceGroup] --name [myWebApp] --vnet-route-all-enabled
@@ -69,7 +69,7 @@ az network public-ip create --resource-group [myResourceGroup] --name myPublicIP
6969
az network nat gateway create --resource-group [myResourceGroup] --name myNATgateway --public-ip-addresses myPublicIP --idle-timeout 10
7070
```
7171

72-
Associate the NAT gateway with the VNet Integration subnet:
72+
Associate the NAT gateway with the virtual network integration subnet:
7373

7474
```azurecli-interactive
7575
az network vnet subnet update --resource-group [myResourceGroup] --vnet-name [myVnet] --name [myIntegrationSubnet] --nat-gateway myNATgateway
@@ -85,4 +85,4 @@ NAT gateway supports both public IP addresses and public IP prefixes. A NAT gate
8585

8686
For more information on the NAT gateway, see [NAT gateway documentation](../../virtual-network/nat-gateway/nat-overview.md).
8787

88-
For more information on VNet Integration, see [VNet Integration documentation](../overview-vnet-integration.md).
88+
For more information on virtual network integration, see [Virtual network integration documentation](../overview-vnet-integration.md).

0 commit comments

Comments
 (0)