Skip to content

Instantly share code, notes, and snippets.

@ivica-k
Created November 29, 2021 20:07
Show Gist options
  • Save ivica-k/5d0fcbfed951fee8f2a1818066b2f734 to your computer and use it in GitHub Desktop.
Save ivica-k/5d0fcbfed951fee8f2a1818066b2f734 to your computer and use it in GitHub Desktop.
Lists ENIs used by Lambdas
# be sure to export $AWS_DEFAULT_REGION and $VPC_ID
$ aws ec2 describe-network-interfaces --region $AWS_DEFAULT_REGION \
--filters 'Name=vpc-id,Values=$VPC_ID' 'Name=status,Values=in-use' \
--query 'NetworkInterfaces[?InterfaceType==`lambda`].NetworkInterfaceId'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment