turbot/aws_insights

Query: vpc_subnet_input

Usage

powerpipe query aws_insights.query.vpc_subnet_input

Steampipe Tables

SQL

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