Skip to content

Commit 4544cbb

Browse files
Minor fixes.
1 parent 967c8ce commit 4544cbb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ If the virtual network is in a different subscription than the app, ensure that
3434

3535
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-app.png" alt-text="Screenshot that shows selecting Virtual network integration.":::
3636

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.
37+
1. Select a subscription and virtual network.
38+
39+
1. Under **Subnet**, 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. Select **Connect**.
3840

3941
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-add-vnet.png" alt-text="Screenshot that shows selecting the virtual network.":::
4042

@@ -49,7 +51,7 @@ az webapp vnet-integration add --resource-group <group-name> --name <app-name> -
4951
```
5052

5153
> [!NOTE]
52-
> The command checks if the subnet is delegated to Microsoft.Web/serverFarms. It 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.
54+
> The command checks if the subnet is delegated to Microsoft.Web/serverFarms. If it isn't configured, the command applies the necessary delegation. 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.
5355
5456
## Configure with Azure PowerShell
5557

@@ -75,7 +77,7 @@ az webapp vnet-integration add --resource-group <group-name> --name <app-name> -
7577
Get-AzDelegation -Subnet $subnet
7678
```
7779

78-
1. If your subnet isn't delegated to Microsoft.Web/serverFarms, add delegation using below commands.
80+
1. If your subnet isn't delegated to Microsoft.Web/serverFarms, add delegation using these commands.
7981

8082
```azurepowershell
8183
$subnet = Add-AzDelegation -Name "myDelegation" -ServiceName "Microsoft.Web/serverFarms" -Subnet $subnet

0 commit comments

Comments
 (0)