turbot/aws_insights

Query: redshift_cluster_security_groups

Usage

powerpipe query aws_insights.query.redshift_cluster_security_groups

Steampipe Tables

SQL

select
s -> 'VpcSecurityGroupId' as "VPC Security Group ID",
s -> 'Status' as "Status"
from
aws_redshift_cluster,
jsonb_array_elements(vpc_security_groups_for_redshift_cluster) as s
where
arn = $1;