turbot/aws_insights

Query: vpc_vpcs_for_codebuild_project

Usage

powerpipe query aws_insights.query.vpc_vpcs_for_codebuild_project

Steampipe Tables

SQL

select
vpc_config ->> 'VpcId' as vpc_id
from
aws_codebuild_project
where
vpc_config ->> 'VpcId' is not null
and arn = $1;