turbot/steampipe-mod-aws-insights

Dashboard: AWS Backup Plan Detail

This dashboard answers the following questions for each plan:

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

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags