turbot/aws_insights

Query: redshift_clusters_for_vpc_security_group

Usage

powerpipe query aws_insights.query.redshift_clusters_for_vpc_security_group

Steampipe Tables

SQL

select
arn as redshift_cluster_arn
from
aws_redshift_cluster,
jsonb_array_elements(vpc_security_groups) as sg
where
sg ->> 'VpcSecurityGroupId' = $1;