Recent Post»

Recent Comment»

« 2024/5 »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
05-09 19:21

 

'region'에 해당되는 글 1

  1. 2018.02.24 aws 전체 리전에 생성된 VM 목록 조회
 

aws 전체 리전에 생성된 VM 목록 조회

Tip | 2018. 2. 24. 01:03 | Posted by 짱아
반응형

aws 전체 리전에 생성된 VM 목록 조회


for region in `aws ec2 describe-regions --output text | cut -f3`
do
    echo -e "\nListing Instances in region:'$region'..."
    aws ec2 describe-instances --region $region
done



for region in `aws ec2 describe-regions --output text | cut -f3`
do
    echo -e "\nListing Instances in region:'$region'..."
    aws ec2 describe-instances --region $region | jq '.Reservations[] | ( .Instances[] | {state: .State.Name, name: .KeyName, type: .InstanceType, key: .KeyName})'
done


  • jq 설치 (@centos)

wget -O jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 chmod +x ./jq cp jq /usr/bin


반응형
: