turbot/steampipe-mod-aws-insights

Dashboard: AWS RDS DB Cluster Inventory Report

This report answers the following questions:

  • What is the total number of RDS DB clusters across my accounts?
  • What are the essential details of each DB cluster (identifier, engine, version)?
  • What is the status and availability of each cluster?
  • How many instances are associated with each cluster?
  • What tags are applied to clusters?
  • How are clusters distributed across accounts and regions?
This dashboard contains 1 card and 1 table.

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 RDS DB Cluster Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select count(*) as "DB Clusters" from aws_rds_db_cluster;

Tags