turbot/steampipe-mod-aws-insights

Dashboard: AWS ElastiCache Cluster Detail

This dashboard answers the following questions:

  • What relationships does the cluster have with other resources?
  • What tags are applied?
  • Is Encryption at rest enabled on the cluster?
  • What is the topic status for the cluster?
This dashboard contains 6 cards, 1 graph, 1 input and 2 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-aws-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select AWS ElastiCache Cluster Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run aws_insights.dashboard.elasticache_cluster_detail --share

Queries

This dashboard uses the the following queries:
select
'Auth Token' as label,
case when auth_token_enabled then 'Enabled' else 'Disabled' end as value,
case when auth_token_enabled then 'ok' else 'alert' end as type
from
aws_elasticache_replication_group
where
arn = $1
and account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4);

Tags