Skip to content

Commit d2898cc

Browse files
authored
Broken link fixed.
1 parent 563e81a commit d2898cc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/virtual-network-manager/how-to-create-mesh-network-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this article, you'll learn how to create a mesh network topology with Azure V
2626

2727
This section will help you create a network group containing the virtual networks you'll be using for the hub-and-spoke network topology.
2828

29-
1. Create a static virtual network member with [New-AzNetworkManagerGroupMembersItem](/powershell/module/az.network/new-aznetworkmanagergroupmembersitem).
29+
1. Create a static virtual network member with New-AzNetworkManagerGroupMembersItem.
3030

3131
```azurepowershell-interactive
3232
$member = New-AzNetworkManagerGroupMembersItem –ResourceId "/subscriptions/abcdef12-3456-7890-abcd-ef1234567890/resourceGroups/myAVNMResourceGroup/providers/Microsoft.Network/virtualNetworks/VNetA"
@@ -54,7 +54,7 @@ This section will help you create a network group containing the virtual network
5454
}'
5555
```
5656
57-
1. Create the network group using either the static membership group (GroupMember) or the dynamic membership group (ConditionalMembership) define previously using [New-AzNetworkManagerGroup](/powershell/module/az.network/new-aznetworkmanagergroup).
57+
1. Create the network group using either the static membership group (GroupMember) or the dynamic membership group (ConditionalMembership) define previously using New-AzNetworkManagerGroup.
5858
5959
```azurepowershell-interactive
6060
$ng = @{
@@ -72,7 +72,7 @@ This section will help you create a network group containing the virtual network
7272
7373
This section will guide you through how to create a mesh configuration with the network group you created in the previous section.
7474
75-
1. Create a connectivity group item to add a network group to with [New-AzNetworkManagerConnectivityGroupItem](/powershell/module/az.network/new-aznetworkmanagerconnectivitygroupitem).
75+
1. Create a connectivity group item to add a network group to with New-AzNetworkManagerConnectivityGroupItem.
7676
7777
```azurepowershell-interactive
7878
$gi = @{
@@ -88,7 +88,7 @@ This section will guide you through how to create a mesh configuration with the
8888
$configGroup.Add($groupItem)
8989
```
9090
91-
1. Create the connectivity configuration with [New-AzNetworkManagerConnectivityConfiguration](/powershell/module/az.network/new-aznetworkmanagerconnectivityconfiguration).
91+
1. Create the connectivity configuration with New-AzNetworkManagerConnectivityConfiguration.
9292
9393
```azurepowershell-interactive
9494
$config = @{
@@ -103,7 +103,7 @@ This section will guide you through how to create a mesh configuration with the
103103
104104
## Deploy the mesh configuration
105105
106-
Commit the configuration to the target regions with [Deploy-AzNetworkManagerCommit](/powershell/module/az.network/deploy-aznetworkmanagercommit).
106+
Commit the configuration to the target regions with Deploy-AzNetworkManagerCommit.
107107
108108
```azurepowershell-interactive
109109
[System.Collections.Generic.List[string]]$configIds = @()

0 commit comments

Comments
 (0)