Reputation: 343
Can I convert S3 backed AMI to EBS backed AMI? If yes, how? Can I convert EBS backed AMI to S3 backed AMI? If yes, how?
Upvotes: 0
Views: 1290
Reputation: 269282
When an Amazon EC2 instance is started, the contents of the chosen Amazon Machine Image (AMI) are copied to the boot disk. This boot disk can be either:
In the early days of EC2, only Instance Store was available. These days, EBS is the preferred storage medium. The only benefit of using Instance Store-Backed AMIs these days is that it's cheaper (no charge for EBS), but the instances can't be stopped and the data on the disk is lost when the machine stops.
Here's some links to instructions for converting between the types:
Upvotes: 1