You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2024. It is now read-only.
After waiting for an instance to be terminated, I call boto.ec2.connection.delete_volume() on its associated volume, but this does not do anything. I have to manually delete the volume from the web interface.
The text was updated successfully, but these errors were encountered:
from boto import ec2
conn = ec2.connect_to_region(opts.region)
vols = conn.get_all_volumes(filters={'attachment.instance-id': instance_ids})
for volume in vols:
conn.delete_volume(volume.id)
I double check in the web interface that all the volumes in vols exist.
Here, conn.delete_volume(volume.id) throws no exception or error messages. It just doesn't delete the volume.
After waiting for an instance to be terminated, I call boto.ec2.connection.delete_volume() on its associated volume, but this does not do anything. I have to manually delete the volume from the web interface.
The text was updated successfully, but these errors were encountered: