turbot/steampipe-mod-aws-insights

Dashboard: AWS CodeCommit Repository Detail

This dashboard answers the following questions for each repository:

  • How is the repository configured?
  • What relationships does the repository have with other resources?
  • What tags are applied to this repository?
  • What is the default branch in this repository?
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 CodeCommit Repository Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
'Default Branch' as "label",
default_branch as "value"
from
aws_codecommit_repository
where
arn = $1
and region = split_part($1, ':', 4)
and account_id = split_part($1, ':', 5);

Tags