turbot/digitalocean_insights

Query: network_firewall_creation_month

Usage

powerpipe query digitalocean_insights.query.network_firewall_creation_month

Steampipe Tables

SQL

with firewalls as (
select
title,
created_at,
to_char(created_at,
'YYYY-MM') as creation_month
from
digitalocean_firewall
),
months as (
select
to_char(d,
'YYYY-MM') as month
from
generate_series(date_trunc('month',
(
select
min(created_at)
from firewalls)),
date_trunc('month',
current_date),
interval '1 month') as d
),
firewalls_by_month as (
select
creation_month,
count(*)
from
firewalls
group by
creation_month
)
select
months.month,
firewalls_by_month.count as "Firewalls"
from
months
left join firewalls_by_month on months.month = firewalls_by_month.creation_month
order by
months.month;

Dashboards

The query is used in the dashboards: