1 Answer
- Newest
- Most votes
- Most comments
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
Relevant content
- AWS OFFICIALUpdated 13 days ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a year ago