gregmoy / list-lambdas

Enumerate Lambda functions across all regions with useful metadata πŸ’‘πŸ’΅βš™

Home Page:https://epsagon.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

List Lambdas functions

https://github.com/epsagon/list-lambdas/blob/master/list-lambdas.png

(Based on photo by Valve Software / CC BY-SA 4.0)

Motivation

Setup

git clone https://github.com/epsagon/list-lambdas
cd list-lambdas/
pip install -r requirements.txt
python list_lambdas.py

Docker

git clone https://github.com/epsagon/list-lambdas
cd list-lambdas/
docker build -t list_lambdas:latest .
docker run --rm -v $HOME/.aws:/root/.aws -t list_lambdas:latest --profile myprofile

Example Outputs

CLI:

https://github.com/epsagon/list-lambdas/blob/master/examples/cli.png

CSV file:

https://github.com/epsagon/list-lambdas/blob/master/examples/csv.png

Usage

Filter only Lambda functions that have not been active in the last 10 days:

python list_lambdas.py --inactive-days-filter 10

Print extended information to the screen (same as in the CSV file):

python list_lambdas.py --all

Sort by a chosen column (e.g. by last invocation time):

python list_lambdas.py --sort-by last-invocation

Output table (with extra data) to a CSV file:

python list_lambdas.py --csv lambdas.csv

Provide credentials:

python list_lambdas.py --token-key-id <access_key_id> --token-secret <secret_access_key>

About

Enumerate Lambda functions across all regions with useful metadata πŸ’‘πŸ’΅βš™

https://epsagon.com

License:MIT License


Languages

Language:Python 98.0%Language:Dockerfile 2.0%