turbot/aws_insights

Query: elasticache_subnet_groups_for_elasticache_cluster_node

Usage

powerpipe query aws_insights.query.elasticache_subnet_groups_for_elasticache_cluster_node

SQL

select
g.arn as elasticache_subnet_group_arn
from
aws_elasticache_cluster as c,
aws_elasticache_subnet_group as g
where
g.cache_subnet_group_name = c.cache_subnet_group_name
and g.region = c.region
and c.arn = $1;