turbot/steampipe-mod-aws-insights

Dashboard: AWS ECR Repository Detail

This dashboard answers the following questions:

  • What relationships does the repository have with other resources?
  • What tags are applied?
  • Is encryption enabled on the repository?
  • How is the repository configured?
This dashboard contains 4 cards, 2 graphs, 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 ECR Repository Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
'Encrypted' as label,
case when encryption_configuration is not null then 'Enabled' else 'Disabled' end as value,
case when encryption_configuration is not null then 'ok' else 'alert' end as type
from
aws_ecr_repository
where
arn = $1
and region = split_part($1, ':', 4)
and account_id = split_part($1, ':', 5);

Tags