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
Fix technical accuracy issues in tutorial-networking-isolate-vnet.md
- Fix az appservice plan update to use $planName instead of $appName
- Add missing variables (planName, csResourceKVUri, csKeyKVUri) to Prerequisites
- Replace deprecated --disable-private-endpoint-network-policies with --private-endpoint-network-policies
- Update Cognitive Services API version from 2021-04-30 to 2024-10-01
- Update ms.date to current date
AB#551229
Copy file name to clipboardExpand all lines: articles/app-service/tutorial-networking-isolate-vnet.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: 'Tutorial: Isolate back-end communication with Virtual Network integratio
3
3
description: Connections from App Service to back-end services are routed through shared network infrastructure with other apps and subscriptions. Learn how to isolate traffic by using Virtual Network integration.
4
4
ms.topic: tutorial
5
5
ms.custom: devx-track-azurecli
6
-
ms.date: 10/26/2021
6
+
ms.date: 02/05/2026
7
7
8
8
ms.reviewer: jordanselig
9
9
author: cephalin
@@ -45,6 +45,9 @@ The tutorial continues to use the following environment variables from the previ
45
45
csResourceName=<cs-resource-name>
46
46
appName=<app-name>
47
47
vaultName=<vault-name>
48
+
planName=<plan-name>
49
+
csResourceKVUri=<cs-resource-kv-uri>
50
+
csKeyKVUri=<cs-key-kv-uri>
48
51
```
49
52
50
53
## Create virtual network and subnets
@@ -61,15 +64,15 @@ The tutorial continues to use the following environment variables from the previ
61
64
1. Create a subnet for the App Service virtual network integration.
For App Service, the virtual network integration subnet is recommended to have a CIDR block of `/26` at a minimum (see [Virtual network integration subnet requirements](overview-vnet-integration.md#subnet-requirements)). `/24` is more than sufficient. `--delegations Microsoft.Web/serverfarms` specifies that the subnet is [delegated for App Service virtual network integration](../virtual-network/subnet-delegation-overview.md).
68
71
69
72
1. Create another subnet for the private endpoints.
0 commit comments