Skip to content

Commit 9933faf

Browse files
Merge pull request #7944 from MicrosoftDocs/users/sdanie/431971
Update networkProfile ARM template example for MDP VNET
2 parents a4b794e + 5908fc9 commit 9933faf

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/managed-devops-pools/configure-networking.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Configure networking
33
description: Learn how to configure networking for Managed DevOps Pools.
4-
ms.date: 05/09/2025
4+
ms.date: 05/15/2025
55
---
66

77
# Configure Managed DevOps Pools networking
@@ -92,7 +92,7 @@ Once the network update completes, newly created resource in the pool will use t
9292

9393
#### [ARM template](#tab/arm/)
9494

95-
If you are using ARM templates, add a `networkProfile` property if it doesn't already exist, then add a `subnetId` property under `networkProfile` with the resource ID of your subnet.
95+
If you are using ARM templates, add a `networkProfile` property in the `fabricProfile` section, then add a `subnetId` property under `networkProfile` with the resource ID of your subnet.
9696

9797
```json
9898
{
@@ -102,10 +102,11 @@ If you are using ARM templates, add a `networkProfile` property if it doesn't al
102102
"location": "eastus",
103103
"properties": {
104104
...
105-
"networkProfile": {
106-
"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/mySubnet",
105+
"fabricProfile": {
106+
"networkProfile": {
107+
"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/mySubnet",
108+
}
107109
}
108-
...
109110
}
110111
}
111112
```

0 commit comments

Comments
 (0)