Created
March 24, 2015 13:48
-
-
Save Dnile/3f718dd816152de03c3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto | |
ec2 = boto.connect_ec2() | |
res = ec2.get_all_instances() | |
instances = [i for r in res for i in r.instances] | |
vol = ec2.get_all_volumes() | |
def attachedvolumes(): | |
print 'Attached Volume ID - Instance ID','-','Device Name' | |
for volumes in vol: | |
if volumes.attachment_state() == 'attached': | |
filter = {'block-device-mapping.volume-id':volumes.id} | |
volumesinstance = ec2.get_all_instances(filters=filter) | |
ids = [z for k in volumesinstance for z in k.instances] | |
for s in ids: | |
print volumes.id,'-',s.id,'-',volumes.attach_data.device | |
# Get a list of unattached volumes | |
def unattachedvolumes(): | |
for unattachedvol in vol: | |
state = unattachedvol.attachment_state() | |
if state == None: | |
print unattachedvol.id, state | |
attachedvolumes() | |
unattachedvolumes() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment