turbot/steampipe-mod-aws-insights

Dashboard: AWS Lambda Function Inventory Report

This report answers the following questions:

  • What is the total number of Lambda functions across my accounts?
  • What are the essential details of each function (runtime, memory, timeout)?
  • What is the current state and configuration of each function?
  • What is the execution role and handler for each function?
  • What tags are applied to functions?
  • How are functions distributed across accounts and regions?
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 Lambda Function Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select count(*) as "Functions" from aws_lambda_function

Tags