728x90
[AWS Cli] 리전에서 사용가능한 인스턴스 유형 확인하기
인스턴스 타입을 리스트형태로 가져오고 싶었는데, 하드 코딩하기에 양이 많을 때
aws cli를 통해서 지정한 리전에서 사용가능한 인스턴스 유형을 확인할 수 있는 방법이 있었다.
ec2 describe-instance-type-offerings를 사용하면 된다.
aws ec2 describe-instance-type-offerings \
--filters Name=instance-type,Values=[type] \
--query "InstanceTypeOfferings[].InstanceType" \
--region [region name]
만약 한국 리전에서 사용할 수 있는 R5의 인스턴스 유형을 확인하고 싶을땐,
다음과 같이 명령어를 사용해서 확인이 가능하다.
aws ec2 describe-instance-type-offerings \
--filters Name=instance-type,Values=r5* \
--query "InstanceTypeOfferings[].InstanceType" \
--region ap-northeast-2
[
"r5ad.4xlarge",
"r5dn.8xlarge",
"r5b.16xlarge",
"r5a.2xlarge",
"r5.large",
.
.
.
"r5n.24xlarge"
]
참고
describe-instance-type-offerings — AWS CLI 1.32.9 Command Reference (amazon.com)
반응형
'💻 CSP > AWS' 카테고리의 다른 글
[AWS] Site-to-site VPN (0) | 2024.02.21 |
---|---|
[AWS] profile 확인 (0) | 2024.01.02 |
[AWS] boto3 filter (0) | 2023.12.01 |
[AWS] ec2metadata (0) | 2023.11.29 |
[AWS] boto3로 EC2 Instance 정보 구하기 (0) | 2023.11.28 |