EBS: Revision history

Jump to: navigation, search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

27 August 2024

  • curprev 00:0900:09, 27 August 2024Ardika Sulistija talk contribs 3,693 bytes +3,693 Created page with " ====How to list and delete EBS Snapshots in Bulk==== ---- How to list all EBS snapshots: https://aws.amazon.com/premiumsupport/knowledge-center/ebs-volume-snapshot-ec2-instance/ How to delete EBS snapshots in bulk: * This deletes all EBS snapshots created before 2020-07-28: $ for i in $(aws ec2 describe-snapshots --owner-ids self --query 'Snapshots[?StartTime<=`2020-07-28`].SnapshotId' --output text); do aws ec2 delete-snapshot --snapshot-id $i; sleep 5; done; * An..."