turbot/steampipe-mod-digitalocean-insights

Dashboard: DigitalOcean VPC Dashboard

This dashboard answers the following questions:

  • How many VPCs are there?
  • How many default VPCs are there?
  • How many VPCs are in each region?
This dashboard contains 2 cards.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select DigitalOcean VPC Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run digitalocean_insights.dashboard.network_vpc_dashboard --share

Queries

This dashboard uses the the following queries:
select
region_slug as "Region",
count(*) as "VPCs"
from
digitalocean_vpc
group by
region_slug
order by
region_slug;

Tags