I am trying to reduce costs of my AWS system. I thought of moving some volumes I rarely use to Amazon Glacier, but I don't find any way I can do it inside AWS besides downloading the volume and uploading to Glacier, which sounds terrible.
I am wondering, is it possible to do this automatically? Assign some EC2 volumes to glacier directly from the EC2 console?
Thanks
EBS volumes cannot be copied or migrated to Amazon Glacier.
EBS snapshots, even though they are stored in Amazon S3, also cannot be moved to Amazon Glacier.
There are 2 ways to put data into Amazon Glacier:
You could use aws s3 sync
to copy your filesystem into S3, then have that moved to Glacier. But there is no magic solution for what you want to achieve.