turbot/steampipe-mod-aws-insights

Query: vpc_input

Usage

powerpipe query aws_insights.query.vpc_input

Steampipe Tables

SQL

select
title as label,
vpc_id as value,
json_build_object(
'account_id',
account_id,
'region',
region,
'vpc_id',
vpc_id
) as tags
from
aws_vpc
order by
title;