본문 바로가기
AWS

[Python] 중지되거나 종료된 EC2 인스턴스 ID 와 타입 출력

by freesunny 2019. 7. 15.

필터를 이용하여 중지되거나, 종료된 EC2 인스턴스 ID와 타입을 출력

import boto3

ec2 = boto3.resource('ec2', region_name='ap-northeast-2')

instances = ec2.instances.filter(Filters=[{'Name': 'instance-state-name', 'Values': ['stopped', 'terminated']}])

for instance in instances:
    print(instance.id, instance.instance_type)

 

## 결과 예시 ##

i-0fe63429076e32630 m5.large
i-0dfa1ab52da76ce92 r5.large
i-08aa947cb86193c2d t2.xlarge