turbot/aws_insights

Query: vpc_vpcs_for_redshift_cluster

Usage

powerpipe query aws_insights.query.vpc_vpcs_for_redshift_cluster

Steampipe Tables

SQL

select
vpc_id as vpc_id
from
aws_redshift_cluster
where
arn = $1
and account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4);