turbot/steampipe-mod-aws-insights

Dashboard: AWS Backup Vault Detail

This dashboard answers the following questions for each vault:

  • What relationships does the vault have with other resources?
  • How is the vault configured?
This dashboard contains 1 card, 2 graphs, 1 input 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 Backup Vault Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
title as "Title",
creation_date as "Creation Date",
region as "Region",
account_id as "Account ID",
arn as "ARN"
from
aws_backup_vault
where
arn = $1
and account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4);

Tags