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-mesh-network-powershell.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ In this article, you'll learn how to create a mesh network topology with Azure V
26
26
27
27
This section will help you create a network group containing the virtual networks you'll be using for the hub-and-spoke network topology.
28
28
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.
@@ -54,7 +54,7 @@ This section will help you create a network group containing the virtual network
54
54
}'
55
55
```
56
56
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.
58
58
59
59
```azurepowershell-interactive
60
60
$ng = @{
@@ -72,7 +72,7 @@ This section will help you create a network group containing the virtual network
72
72
73
73
This section will guide you through how to create a mesh configuration with the network group you created in the previous section.
74
74
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.
76
76
77
77
```azurepowershell-interactive
78
78
$gi = @{
@@ -88,7 +88,7 @@ This section will guide you through how to create a mesh configuration with the
88
88
$configGroup.Add($groupItem)
89
89
```
90
90
91
-
1. Create the connectivity configuration with [New-AzNetworkManagerConnectivityConfiguration](/powershell/module/az.network/new-aznetworkmanagerconnectivityconfiguration).
91
+
1. Create the connectivity configuration with New-AzNetworkManagerConnectivityConfiguration.
92
92
93
93
```azurepowershell-interactive
94
94
$config = @{
@@ -103,7 +103,7 @@ This section will guide you through how to create a mesh configuration with the
103
103
104
104
## Deploy the mesh configuration
105
105
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.
0 commit comments