turbot/steampipe-mod-aws-insights

Dashboard: AWS CodePipeline Pipeline Detail

This dashboard answers the following questions for each pipeline:

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

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run aws_insights.dashboard.codepipeline_pipeline_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_codepipeline_pipeline
where
arn = $1
and region = split_part($1, ':', 4)
and account_id = split_part($1, ':', 5);

Tags