Too many VPC's in my account

0

I have more than 10 VPC in my account. Is there any smart way I could figure out which VPC's are in use and which are not or not linked to any resource?

1 Answer
0

An AWS CLI command like this would describe every instance that has a network interface in the VPC (this would be a pretty good indicator that the service is active):

aws ec2 describe-network-interfaces --filters Name=vpc-id,Values=vpc-12345678910abcdef

If this is too verbose you could filter this with -query 'NetworkInterfaces[*].[RequesterId,Description]'

This is one of several good suggestions from https://stackoverflow.com/questions/61997608/how-can-i-list-all-resources-that-belongs-to-a-certain-vpc

profile picture
EXPERT
Steve_M
answered 5 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions