Reputation: 4208
I have a scheme for a cheap minecraft server using t2 instances. If I want to play with just a few friends, I will use t2.small. If I want to play with a lot of friends I will detach the volume, attach it to a t2.medium and play on that.
From reading the documents and using the AWS Console, it does not appear to be possible to boot off of an existing EBS volume. Is there something I am missing that would make this use case possible?
Upvotes: 0
Views: 61
Reputation: 36073
You can change the existing EC2 instance between t2.small and t2.medium as needed.
Note that if your EC2 instance is in EC2-Classic (ie. not inside a VPC), then you will get a new IP address. You can preserve an IP address by using an Elastic IP address.
Upvotes: 1