turbot/steampipe-mod-aws-insights

Dashboard: AWS CodeBuild Project Detail

This dashboard answers the following questions for each project:

  • How is the project configured?
  • What relationships does the project have with other resources?
  • What tags are applied to this project?
  • How is encryption configured?
  • How is logging configured?
This dashboard contains 3 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 CodeBuild Project Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags