turbot/aws_insights

Query: elasticache_clusters_for_vpc_security_group

Usage

powerpipe query aws_insights.query.elasticache_clusters_for_vpc_security_group

Steampipe Tables

SQL

select
arn as elasticache_cluster_arn
from
aws_elasticache_cluster,
jsonb_array_elements(security_groups) as sg
where
sg ->> 'SecurityGroupId' = $1;