turbot/steampipe-mod-azure-insights

Dashboard: Azure Virtual Network Dashboard

This dashboard answers the following questions:

  • How many virtual networks are in each subscription, resource group and region?
  • How many virtual networks do not have DDoS protection enabled?
This dashboard contains 2 cards.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-azure-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select Azure Virtual Network Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run azure_insights.dashboard.network_virtual_network_dashboard --share

Queries

This dashboard uses the the following queries:
select
provisioning_state as "Provisioning State",
count(*) as "Virtual Networks"
from
azure_virtual_network
group by
provisioning_state
order by
provisioning_state;

Tags