Unencrypted EBS
Cloudshell snapshot enumeration
aws ec2 describe-snapshots #All
aws ec2 describe-snapshots --snapshot-ids <id> #by snap id
aws ec2 describe-snapshots --filters "Name=volume-id,Values=<volume id>" #by volume idaws ec2 describe-snapshots --filters "Name=encrypted,Values=false"Mount EBS in instance and access data
aws ec2 create-volume --snapshot-id <target snapshot id> --volume-type gp3 --region <ec2 region> --availability-zone <ec2 az id>aws ec2 attach-volume --region us-east-1 --device /dev/sdh --instance-id <instance id> --volume-id <created volume id>sudo fdisk -l #we expect to see a new disk
sudo mkdir /snapshot-recovery
sudo mount /dev/nvme1n1 /snapshot-recovery
cd /snapshot-recoveryLast updated