turbot/steampipe-mod-aws-insights

Dashboard: AWS CloudTrail Trail Inventory Report

This report answers the following questions:

  • How many CloudTrail trails do I have?
  • What are all my CloudTrail trails and their complete details?
  • Which trails are regional vs multi-regional?
  • Which trails are organization trails?
  • What is the logging and validation status of each trail?
  • Which trails have encryption enabled?
  • What S3 buckets are used for trail logs?
  • What tags are applied to my trails?
This dashboard contains 1 card and 1 table.

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 CloudTrail Trail Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
count(*) as "Trails"
from
aws_cloudtrail_trail
where
region = home_region;

Tags