EC2 인스턴스에서 사용하는 EBS 볼륨 ID 출력
import boto3
ec2 = boto3.resource('ec2', region_name='ap-southeast-1')
instance = ec2.Instance('i-062807af2ec003bb6')
for device in instance.block_device_mappings:
volume = device.get('Ebs')
print(volume.get('VolumeId'))
root 볼륨의 TYPE 출력
print(instance.root_device_type)
root 볼륨 디바이스네임 출력
print(instance.root_device_name)
'AWS' 카테고리의 다른 글
[awscli] 특정 EC2 인스턴스 정보 출력 (0) | 2019.07.15 |
---|---|
[Python] 중지되거나 종료된 EC2 인스턴스 ID 와 타입 출력 (0) | 2019.07.15 |
[Python] AWS EC2 인스턴스의 TYPE 출력 (0) | 2019.07.14 |
[Python] AWS EC2 인스턴스 ID 출력 (0) | 2019.07.13 |
[awscli] 정지된 인스턴스의 인스턴스ID, 블럭디바이스명, 볼륨ID추출 (0) | 2019.07.12 |