AWS VPC에 할당된 전체 리소스 확인
2022. 11. 8. 16:44ㆍ기타/scripts
728x90
SMALL
- 개요
AWS 특정 VPC에 할당된 리소스를 전부 확인할 수 있는 스크립트
- 스크립트 (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 VpcPeeringConnectionId
aws ec2 describe-nat-gateways --region $region --filter 'Name=vpc-id,Values='$vpc | grep NatGatewayId
aws ec2 describe-instances --region $region --filters 'Name=vpc-id,Values='$vpc | grep InstanceId
aws ec2 describe-vpn-gateways --region $region --filters 'Name=attachment.vpc-id,Values='$vpc | grep VpnGatewayId
aws ec2 describe-network-interfaces --region $region --filters 'Name=vpc-id,Values='$vpc | grep NetworkInterfaceId
- 사용 방법
./vpclist.sh vpc-xxx
728x90
LIST
'기타 > scripts' 카테고리의 다른 글
retention 없는 CloudWatch logs의 log groups (0) | 2022.12.07 |
---|---|
codepipeline stage status (0) | 2022.11.21 |
ECR repository life-cycle-policy 확인 (0) | 2022.11.04 |
같은 커맨드 여러 번 반복해서 실행 (0) | 2022.11.01 |
AMI 연결이 안되어있는 Snapshot 찾기 (Orphaned) (0) | 2022.10.13 |