turbot/steampipe-mod-aws-insights

Dashboard: AWS EFS File System Detail

This dashboard answers the following questions for each cluster:

  • How is the file system configured?
  • What tags are applied?
  • How is the size distributed in the file system?
  • What relationships does the file system have with other resources?
This dashboard contains 6 cards, 1 graph, 1 input and 3 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 EFS File System Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags