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/virtual-network-manager/how-to-create-hub-and-spoke-powershell.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ This section will help you create a network group containing the virtual network
30
30
31
31
### Static membership
32
32
33
-
1. Create a static virtual network member with [New-AzNetworkManagerGroupMembersItem](/powershell/module/az.network/new-aznetworkmanagergroupmembersitem).
33
+
1. Create a static virtual network member with New-AzNetworkManagerGroupMembersItem.
@@ -58,7 +58,7 @@ This section will help you create a network group containing the virtual network
58
58
}'
59
59
```
60
60
61
-
1. Create the network group using either the static membership group (GroupMember) or the dynamic membership group (ConditionalMembership) defined previously using [New-AzNetworkManagerGroup](/powershell/module/az.network/new-aznetworkmanagergroup).
61
+
1. Create the network group using either the static membership group (GroupMember) or the dynamic membership group (ConditionalMembership) defined previously using New-AzNetworkManagerGroup.
62
62
63
63
```azurepowershell-interactive
64
64
$ng = @{
@@ -76,7 +76,7 @@ This section will help you create a network group containing the virtual network
76
76
77
77
This section will guide you through how to create a hub-and-spoke configuration with the network group you created in the previous section.
78
78
79
-
1. Create a spokes connectivity group item to add a network group with [New-AzNetworkManagerConnectivityGroupItem](/powershell/module/az.network/new-aznetworkmanagerconnectivitygroupitem). You can enable direct connectivity with the `-GroupConnectivity` flag, global mesh with `-IsGlobal` flag, or `-UseHubGateway` flag to use the gateway in the hub virtual network:
79
+
1. Create a spokes connectivity group item to add a network group with New-AzNetworkManagerConnectivityGroupItem. You can enable direct connectivity with the `-GroupConnectivity` flag, global mesh with `-IsGlobal` flag, or `-UseHubGateway` flag to use the gateway in the hub virtual network:
80
80
81
81
```azurepowershell-interactive
82
82
$spokes = @{
@@ -92,7 +92,7 @@ This section will guide you through how to create a hub-and-spoke configuration
92
92
$configGroup.Add($spokesGroup)
93
93
```
94
94
95
-
1. Create a hub connectivity group item and define the virtual network you'll use as the hub with [New-AzNetworkManagerHub](/powershell/module/az.network/new-aznetworkmanagerhub).
95
+
1. Create a hub connectivity group item and define the virtual network you'll use as the hub with New-AzNetworkManagerHub.
@@ -106,7 +106,7 @@ This section will guide you through how to create a hub-and-spoke configuration
106
106
$hubList.Add($hubvnet)
107
107
```
108
108
109
-
1. Create the connectivity configuration with [New-AzNetworkManagerConnectivityConfiguration](/powershell/module/az.network/new-aznetworkmanagerconnectivityconfiguration).
109
+
1. Create the connectivity configuration with New-AzNetworkManagerConnectivityConfiguration.
110
110
111
111
```azurepowershell-interactive
112
112
$config = @{
@@ -122,7 +122,7 @@ This section will guide you through how to create a hub-and-spoke configuration
122
122
123
123
## Deploy the hub-and-spoke configuration
124
124
125
-
Commit the configuration to the target regions with [Deploy-AzNetworkManagerCommit](/powershell/module/az.network/deploy-aznetworkmanagercommit).
125
+
Commit the configuration to the target regions with Deploy-AzNetworkManagerCommit.
0 commit comments