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
Copy file name to clipboardExpand all lines: articles/app-service/environment/networking.md
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,13 @@ To enable the feature, configure the `MultipleSubnetJoinEnabled` cluster setting
153
153
154
154
For guidance on configuring cluster settings, see [Custom configuration settings for App Service Environments](app-service-app-service-environment-custom-settings.md).
155
155
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:
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`.
157
+
158
+
You can set this property using the CLI or directly in an ARM template.
159
+
160
+
#### [CLI](#tab/cli)
161
+
162
+
There's no dedicated CLI parameter for this property, so use the following `az rest` command to enable it:
157
163
158
164
```azurecli-interactive
159
165
az rest --method put \
@@ -167,8 +173,25 @@ az rest --method put \
167
173
168
174
Replace `{subscriptionId}`, `{resourceGroupName}`, and `{aseName}` with your values.
169
175
176
+
#### [ARM template](#tab/arm)
177
+
178
+
In your ARM template, set the property in the networking configuration resource:
> 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.
194
+
> When updating 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.
0 commit comments