Skip to content

Instantly share code, notes, and snippets.

@organom
Last active February 20, 2024 12:18
Show Gist options
  • Save organom/e5d3ef825001cce736a9712605bbc66f to your computer and use it in GitHub Desktop.
Save organom/e5d3ef825001cce736a9712605bbc66f to your computer and use it in GitHub Desktop.
List all lambdas and its runtimes in all regions for AWS account
#!/bin/bash
for region in `aws ec2 describe-regions --query "Regions[].RegionName" --region us-west-1 --output text`
do
echo "[${region}]"
aws lambda list-functions --region ${region} --output text --query "Functions[].{ARN:FunctionArn, Runtime:Runtime}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment