반응형
Describes one or more of your route tables.
모든 라우팅 테이블 ID 조회
aws ec2 describe-route-tables \ --profile {PROFILE_NAME} --output=json \ --query "RouteTables[*].RouteTableId[]"
특정 VPC에 할당되어 있는 모든 라우팅 테이블 ID 조회
aws ec2 describe-route-tables \ --profile {PROFILE_NAME} --output=json \ --query "RouteTables[*].RouteTableId[]" \ --filters "Name=vpc-id,Values={VPC_ID}"
특정 VPC에 할당되어 있는 라우팅 테이블 ID 조회(기본 라우팅 테이블 제외, 서브넷과 연결되지 않은 라우팅 테이블 제외)
aws ec2 describe-route-tables \ --profile {PROFILE_NAME} --output=json \ --query "RouteTables[*].RouteTableId[]" \ --filters "Name=vpc-id,Values={VPC_ID}" "Name=association.main, Values=false"
반응형
'Cloud > AWS' 카테고리의 다른 글
[AWS] RDS (0) | 2021.10.15 |
---|---|
[AWS] IAM (0) | 2021.10.13 |
[AWS] Cloud Front (0) | 2021.10.05 |
[AWS] AWS Cli 설정하기 (0) | 2021.09.03 |
[AWS] EC2 Windows 만들고 접속하기 (0) | 2021.07.06 |