turbot/steampipe-mod-aws-insights

Dashboard: AWS VPC Flow Logs Detail

This dashboard answers the following questions for each flow log:

  • How is the flow log configured?
  • What tags are applied?
  • What is the log destination for the flow log?
  • What relationships does the flow log have with other resources?
This dashboard contains 2 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 VPC Flow Logs Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
'Deliver Logs Status' as label,
deliver_logs_status as value,
case when deliver_logs_status = 'SUCCESS' then 'ok' else 'alert' end as type
from
aws_vpc_flow_log
where
flow_log_id = $1

Tags