Skip to content

Commit 7353cb3

Browse files
committed
Document allowNewDirectNetworkIntegrations for outbound network segmentation
1 parent 86cde0a commit 7353cb3

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

articles/app-service/environment/networking.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: App Service Environment networking
33
description: App Service Environment networking details
44
author: seligj95
55
ms.topic: overview
6-
ms.date: 02/03/2026
6+
ms.date: 03/30/2026
77
ms.author: jordanselig
88
ms.service: azure-app-service
99
---
@@ -153,6 +153,23 @@ To enable the feature, configure the `MultipleSubnetJoinEnabled` cluster setting
153153

154154
For guidance on configuring cluster settings, see [Custom configuration settings for App Service Environments](app-service-app-service-environment-custom-settings.md).
155155

156+
You must also set the `allowNewDirectNetworkIntegrations` property to `true` in the App Service Environment's networking configuration. This property is a required part of the networking configuration body. If you update the networking configuration without including this property, it could be disabled since it defaults to `false`. There's no dedicated CLI parameter for this property, so use the following `az rest` command to enable it:
157+
158+
```azurecli-interactive
159+
az rest --method put \
160+
--uri "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{aseName}/configurations/networking?api-version=2024-04-01" \
161+
--body '{
162+
"properties": {
163+
"allowNewDirectNetworkIntegrations": true
164+
}
165+
}'
166+
```
167+
168+
Replace `{subscriptionId}`, `{resourceGroupName}`, and `{aseName}` with your values.
169+
170+
> [!IMPORTANT]
171+
> When sending a PUT request to update the networking configuration, include all properties you want to preserve. The `allowNewDirectNetworkIntegrations` property is a non-nullable boolean that defaults to `false`, so omitting it from a networking configuration update disables the feature.
172+
156173
### Join an app to an alternate subnet
157174

158175
The alternate subnet must be empty and delegated to `Microsoft.Web/serverFarms`. Ensure that [application traffic routing is enabled for your app](../configure-vnet-integration-routing.md#configure-application-routing) to route all traffic through the alternate subnet.

0 commit comments

Comments
 (0)