Skip to content

Instantly share code, notes, and snippets.

@chrismeyersfsu
Created April 22, 2015 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismeyersfsu/3e3f37ee6423f9f75375 to your computer and use it in GitHub Desktop.
Save chrismeyersfsu/3e3f37ee6423f9f75375 to your computer and use it in GitHub Desktop.
azure cleanup unattached disks
disks = azure.list_disks()
for disk in disks:
if disk.attached_to is None:
azure.delete_disk(disk.name, True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment