我想列出附加到ec2的所有卷。
conn = EC2Connection()
attribute = get_instance_metadata()
region=attribute['local-hostname'].split('.')[1]
inst_id = attribute['instance-id']
aws = boto.ec2.connect_to_region(region)
volume=attribute['local-hostname']
volumes = str(aws.get_all_volumes(filters={'attachment.instance-id': inst_id}))
使用我的代码我可以列出音量但结果是这样的:
[vol-35b0b5fa,卷:vol-6cbbbea3]
我需要类似的东西:
体积-35b0b5fa
体积-6cbbbea3
我不知道我该怎么做,我的研究对我没有帮助。
有人可以帮我吗?
答案 0 :(得分:10)
如果您使用的是Boto3库,那么这里是列出所有附加卷的命令
import boto3
ec2 = boto3.resource('ec2', region_name='us-west-2')
volumes = ec2.volumes.all() # If you want to list out all volumes
volumes = ec2.volumes.filter(Filters=[{'Name': 'status', 'Values': ['in-use']}]) # if you want to list out only attached volumes
[volume for volume in volumes]
答案 1 :(得分:3)
boto中的get_all_volumes
调用返回Volume
个对象的列表。如果您只需要卷的ID,则可以使用id
对象的Volume
属性获取该ID:
import boto.ec2
ec2 = boto.ec2.connect_to_region(region_name)
volumes = ec2.get_all_volumes()
volume_ids = [v.id for v in volumes]
变量volume_ids
现在是一个字符串列表,其中每个字符串都是其中一个卷的ID。
答案 2 :(得分:2)
我认为这里的要求只是用v.id迭代列表: 只需将其添加到您的代码中:
for v in volumes:
print v.id