如何通过使用boto传递volume id来查找ec2实例id

问题描述 投票:0回答:2

我想将volume id作为参数传递,然后在python中返回实例id

python amazon-web-services amazon-ec2 boto3
2个回答
1
投票

你需要打电话给describe_instances()

您可以在Python中自己过滤结果,也可以为Filters传递block-device-mapping.volume-id

import boto3

ec2_client = boto3.client('ec2', region_name='ap-southeast-2')

response = ec2_client.describe_instances(Filters=[{'Name':'block-device-mapping.volume-id','Values':['vol-deadbeef']}])

instance_id = response['Reservations'][0]['Instances'][0]['InstanceId']

print(instance_id)

卷一次只能附加到一个实例,因此此代码假定只返回一个实例。


0
投票

正如@Rajesh所指出的,更简单的方法是使用DescribeVolumes,它返回Attachment信息:

import boto3

ec2_client = boto3.client('ec2', region_name='ap-southeast-2')

response = ec2_client.describe_volumes(VolumeIds=['vol-deadbeef'])

print(response['Volumes'][0]['Attachments'][0]['InstanceId'])

此代码假定实例是卷上的第一个附件(因为EBS卷只能附加到一个实例)。

© www.soinside.com 2019 - 2024. All rights reserved.