Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 958 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 958 Bytes

AzViz

PowerShell Module that can generate a topology diagram to Visualize Azure Network Topology and ARM templates (WIP). It has capabilities to insert appropriate Azure Icons depending upon the type of the Azure Resource you have in your Resource Group, like Virtual Machine, Virtual Network, Subnet etc.

Azure Resource Network Topology Visualization

Working with Single Azure Resource Group

Import-Module AzViz

Get-AzNetworkVizualization -ResourceGroups 'test-resource-group' -ShowGraph -OutputFormat png -Verbose

Working with Multiple Azure Resource Group

$ResourceGroups = 'test-resource-group', 'demo-resource-group'
Get-AzNetworkVizualization -ResourceGroups $ResourceGroups  -ShowGraph -OutputFormat png -Verbose