Skip to content

Commit 563e81a

Browse files
authored
Broken link fixed
1 parent d0cfbff commit 563e81a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/virtual-network-manager/how-to-create-hub-and-spoke-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This section will help you create a network group containing the virtual network
3030

3131
### Static membership
3232

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.
3434

3535
```azurepowershell-interactive
3636
$member = New-AzNetworkManagerGroupMembersItem –ResourceId "/subscriptions/abcdef12-3456-7890-abcd-ef1234567890/resourceGroups/myAVNMResourceGroup/providers/Microsoft.Network/virtualNetworks/VNetA"
@@ -58,7 +58,7 @@ This section will help you create a network group containing the virtual network
5858
}'
5959
```
6060
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.
6262
6363
```azurepowershell-interactive
6464
$ng = @{
@@ -76,7 +76,7 @@ This section will help you create a network group containing the virtual network
7676
7777
This section will guide you through how to create a hub-and-spoke configuration with the network group you created in the previous section.
7878
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:
8080
8181
```azurepowershell-interactive
8282
$spokes = @{
@@ -92,7 +92,7 @@ This section will guide you through how to create a hub-and-spoke configuration
9292
$configGroup.Add($spokesGroup)
9393
```
9494
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.
9696
9797
```azurepowershell-interactive
9898
[System.Collections.Generic.List[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]]$hubList = @()
@@ -106,7 +106,7 @@ This section will guide you through how to create a hub-and-spoke configuration
106106
$hubList.Add($hubvnet)
107107
```
108108
109-
1. Create the connectivity configuration with [New-AzNetworkManagerConnectivityConfiguration](/powershell/module/az.network/new-aznetworkmanagerconnectivityconfiguration).
109+
1. Create the connectivity configuration with New-AzNetworkManagerConnectivityConfiguration.
110110
111111
```azurepowershell-interactive
112112
$config = @{
@@ -122,7 +122,7 @@ This section will guide you through how to create a hub-and-spoke configuration
122122
123123
## Deploy the hub-and-spoke configuration
124124
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.
126126
127127
```azurepowershell-interactive
128128
[System.Collections.Generic.List[string]]$configIds = @()

0 commit comments

Comments
 (0)