Quickstart: Create a mesh network with Azure Virtual Network Manager using Azure PowerShell

Get started with Azure Virtual Network Manager by using the Azure PowerShell to manage connectivity for your virtual networks.

In this quickstart, you deploy three virtual networks and use Azure Virtual Network Manager to create a mesh network topology.

Important

Azure Virtual Network Manager is generally available for Virtual Network Manager and hub and spoke connectivity configurations.

Mesh connectivity configurations and security admin rules remain in public preview. This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities. For more information, see Supplemental Terms of Use for Microsoft Azure Previews.

Prerequisites

  • An Azure account with an active subscription. Create an account for free.
  • Run Connect-AzAccount to create a local connection with Azure.

Important

Perform this quickstart using Powershell locally, not through Azure Cloud Shell. The version of Az.Network in Azure Cloud Shell does not currently support the Azure Virtual Network Manager cmdlets.

Install Azure PowerShell module

Install the latest Az.Network Azure PowerShell module using this command:

 Install-Module -Name Az.Network -RequiredVersion 5.3.0

Create a resource group

Before you can create an Azure Virtual Network Manager, you have to create a resource group to host the Network Manager. Create a resource group with New-AzResourceGroup. This example creates a resource group named myAVNMResourceGroup in the WestUS location.


$location = "West US"
$rg = @{
    Name = 'myAVNMResourceGroup'
    Location = $location
}
New-AzResourceGroup @rg

Create Virtual Network Manager

  1. Define the scope and access type this Azure Virtual Network Manager instance have. You can choose to create the scope with subscriptions group or management group or a combination of both. Create the scope by using New-AzNetworkManagerScope.

    
    Import-Module -Name Az.Network -RequiredVersion "4.15.1"
    
    [System.Collections.Generic.List[string]]$subGroup = @()  
    $subGroup.Add("/subscriptions/abcdef12-3456-7890-abcd-ef1234567890")
    [System.Collections.Generic.List[string]]$mgGroup = @()  
    $mgGroup.Add("/providers/Microsoft.Management/managementGroups/abcdef12-3456-7890-abcd-ef1234567890")
    
    [System.Collections.Generic.List[String]]$access = @()  
    $access.Add("Connectivity");  
    $access.Add("SecurityAdmin"); 
    
    $scope = New-AzNetworkManagerScope -Subscription $subGroup  -ManagementGroup $mgGroup
    
    
  2. Create the Virtual Network Manager with New-AzNetworkManager. This example creates an Azure Virtual Network Manager named myAVNM in the West US location.

    $avnm = @{
        Name = 'myAVNM'
        ResourceGroupName = $rg.Name
        NetworkManagerScope = $scope
        NetworkManagerScopeAccess = $access
        Location = $location
    }
    $networkmanager = New-AzNetworkManager @avnm
    

Create three virtual networks

Create three virtual networks with New-AzVirtualNetwork. This example creates virtual networks named VNetA, VNetB and VNetC in the West US location. If you already have virtual networks you want create a mesh network with, you can skip to the next section.

$vnetA = @{
    Name = 'VNetA'
    ResourceGroupName = 'myAVNMResourceGroup'
    Location = $location
    AddressPrefix = '10.0.0.0/16'    
}

$virtualNetworkA = New-AzVirtualNetwork @vnetA

$vnetB = @{
    Name = 'VNetB'
    ResourceGroupName = 'myAVNMResourceGroup'
    Location = $location
    AddressPrefix = '10.1.0.0/16'    
}
$virtualNetworkB = New-AzVirtualNetwork @vnetB

$vnetC = @{
    Name = 'VNetC'
    ResourceGroupName = 'myAVNMResourceGroup'
    Location = $location
    AddressPrefix = '10.2.0.0/16'    
}
$virtualNetworkC = New-AzVirtualNetwork @vnetC

Add a subnet to each virtual network

To complete the configuration of the virtual networks, add a /24 subnet to each one. Create a subnet configuration named default with Add-AzVirtualNetworkSubnetConfig.

$subnetA = @{
    Name = 'default'
    VirtualNetwork = $virtualNetworkA
    AddressPrefix = '10.0.0.0/24'
}
$subnetConfigA = Add-AzVirtualNetworkSubnetConfig @subnetA
$virtualnetworkA | Set-AzVirtualNetwork

$subnetB = @{
    Name = 'default'
    VirtualNetwork = $virtualNetworkB
    AddressPrefix = '10.1.0.0/24'
}
$subnetConfigC = Add-AzVirtualNetworkSubnetConfig @subnetB
$virtualnetworkB | Set-AzVirtualNetwork

$subnetC = @{
    Name = 'default'
    VirtualNetwork = $virtualNetworkC
    AddressPrefix = '10.2.0.0/24'
}
$subnetConfigC = Add-AzVirtualNetworkSubnetConfig @subnetC
$virtualnetworkC | Set-AzVirtualNetwork

Create a network group

  1. Create a network group to add virtual networks to.

    $ng = @{
            Name = 'myNetworkGroup'
            ResourceGroupName = $rg.Name
            NetworkManagerName = $networkManager.Name
        }
        $networkgroup = New-AzNetworkManagerGroup @ng
    

Option 1: Static membership

  1. Add the static member to the network group with the following commands:

    1. Static members must have a network group scoped unique name. It's recommended to use a consistent hash of the virtual network ID. This is an approach using the ARM Templates uniqueString() implementation.
        function Get-UniqueString ([string]$id, $length=13)
        {
        $hashArray = (new-object System.Security.Cryptography.SHA512Managed).ComputeHash($id.ToCharArray())
        -join ($hashArray[1..$length] | ForEach-Object { [char]($_ % 26 + [byte][char]'a') })
        }
    
    $smA = @{
            Name = Get-UniqueString $virtualNetworkA.Id
            ResourceGroupName = $rg.Name
            NetworkGroupName = $networkGroup.Name
            NetworkManagerName = $networkManager.Name
            ResourceId = $virtualNetworkA.Id
        }
        $statimemberA = New-AzNetworkManagerStaticMember @sm
    
    $smB = @{
            Name = Get-UniqueString $virtualNetworkB.Id
            ResourceGroupName = $rg.Name
            NetworkGroupName = $networkGroup.Name
            NetworkManagerName = $networkManager.Name
            ResourceId = $virtualNetworkB.Id
        }
        $statimemberB = New-AzNetworkManagerStaticMember @sm
    
    $smC = @{
            Name = Get-UniqueString $virtualNetworkC.Id
            ResourceGroupName = $rg.Name
            NetworkGroupName = $networkGroup.Name
            NetworkManagerName = $networkManager.Name
            ResourceId = $virtualNetworkC.Id
        }
        $statimemberC = New-AzNetworkManagerStaticMember @sm
    

Option 2: Dynamic membership

  1. Define the conditional statement and store it in a variable.

Note

It is recommended to scope all of your conditionals to only scan for type Microsoft.Network/virtualNetwork for efficiency.

$conditionalMembership = '{ 
    "allof":[
        { 
        "field": "type", 
        "equals": "Microsoft.Network/virtualNetwork" 
        }
        { 
        "field": "name", 
        "contains": "VNet" 
        } 
    ] 
}' 
  1. Create the Azure Policy definition using the conditional statement defined in the last step using New-AzPolicyDefinition.

Important

Policy resources must have a scope unique name. It is recommended to use a consistent hash of the network group. This is an approach using the ARM Templates uniqueString() implementation.

    function Get-UniqueString ([string]$id, $length=13)
    {
    $hashArray = (new-object System.Security.Cryptography.SHA512Managed).ComputeHash($id.ToCharArray())
    -join ($hashArray[1..$length] | ForEach-Object { [char]($_ % 26 + [byte][char]'a') })
    }
$defn = @{
    Name = Get-UniqueString $networkgroup.Id
    Mode = 'Microsoft.Network.Data'
    Policy = $conditionalMembership
}

$policyDefinition = New-AzPolicyDefinition @defn
  1. Assign the policy definition at a scope within your network managers scope for it to begin taking effect.

    $assgn = @{
        Name = Get-UniqueString $networkgroup.Id
        PolicyDefinition  = $policyDefinition
    }
    
    $policyAssignment = New-AzPolicyAssignment @assgn
    

Create a configuration

  1. Create a connectivity group item to add a network group to with New-AzNetworkManagerConnectivityGroupItem.

    $gi = @{
        NetworkGroupId = $networkgroup.Id
    }
    $groupItem = New-AzNetworkManagerConnectivityGroupItem @gi
    
  2. Create a configuration group and add the group item from the previous step.

    [System.Collections.Generic.List[Microsoft.Azure.Commands.Network.Models.PSNetworkManagerConnectivityGroupItem]]$configGroup = @()
    $configGroup.Add($groupItem)
    
  3. Create the connectivity configuration with New-AzNetworkManagerConnectivityConfiguration.

    $config = @{
        Name = 'connectivityconfig'
        ResourceGroupName = $rg.Name
        NetworkManagerName = $networkManager.Name
        ConnectivityTopology = 'Mesh'
        AppliesToGroup = $configGroup
    }
    $connectivityconfig = New-AzNetworkManagerConnectivityConfiguration @config
        ```                        
    
    

Commit deployment

Commit the configuration to the target regions with Deploy-AzNetworkManagerCommit. This triggers your configuration to begin taking effect.

[System.Collections.Generic.List[string]]$configIds = @()  
$configIds.add($connectivityconfig.id) 
[System.Collections.Generic.List[string]]$target = @()   
$target.Add("westus")     

$deployment = @{
    Name = $networkManager.Name
    ResourceGroupName = $rg.Name
    ConfigurationId = $configIds
    TargetLocation = $target
    CommitType = 'Connectivity'
}
Deploy-AzNetworkManagerCommit @deployment 

Clean up resources

If you no longer need the Azure Virtual Network Manager, you need to make sure all of following is true before you can delete the resource:

  • There are no deployments of configurations to any region.
  • All configurations have been deleted.
  • All network groups have been deleted.
  1. Remove the connectivity deployment by deploying an empty configuration with Deploy-AzNetworkManagerCommit.

    [System.Collections.Generic.List[string]]$configIds = @()
    [System.Collections.Generic.List[string]]$target = @()   
    $target.Add("westus")     
    $removedeployment = @{
        Name = 'myAVNM'
        ResourceGroupName = 'myAVNMResourceGroup'
        ConfigurationId = $configIds
        Target = $target
        CommitType = 'Connectivity'
    }
    Deploy-AzNetworkManagerCommit @removedeployment
    
  2. Remove the connectivity configuration with Remove-AzNetworkManagerConnectivityConfiguration

    
    Remove-AzNetworkManagerConnectivityConfiguration @connectivityconfig.Id   
    
    
  3. Remove the policy resources with Remove-AzPolicy*

    
    Remove-AzPolicyAssignment $policyAssignment.Id
    Remove-AzPolicyAssignment $policyDefinition.Id
    
    
  4. Remove the network group with Remove-AzNetworkManagerGroup.

    Remove-AzNetworkManagerGroup $networkGroup.Id
    
  5. Delete the network manager instance with Remove-AzNetworkManager.

    Remove-AzNetworkManager $networkManager.Id
    
  6. If you no longer need the resource created, delete the resource group with Remove-AzResourceGroup.

    Remove-AzResourceGroup -Name 'myAVNMResourceGroup'
    

Next steps