list all active AWS resources in a VPC
outline
list all active AWS resources in the specific VPC
script (vpclist.sh)
#!/bin/bash
vpc="$1"
region="ap-northeast-2"
aws ec2 describe-vpc-peering-connections --region $region --filters 'Name=requester-vpc-info.vpc-id,Values='$vpc | grep Vp...
ktg0210.hashnode.dev1 min read