turbot/ibm_insights

Query: ibm_is_vpc_by_creation_month

Usage

powerpipe query ibm_insights.query.ibm_is_vpc_by_creation_month

Steampipe Tables

SQL

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

Dashboards

The query is used in the dashboards: