Reputation: 4871
Is it possible to add storage to an EC2 instance? The default set up I have has 30GB of memory and I'd like 100 on it.
I created an AMI from the instance but doesn't seem like you can attach it?
How can I add storage to running EC2 instance?
Upvotes: 0
Views: 1066
Reputation: 142
Yes, it is possible to modify volume. Identify the EBS Volume of your EC2 instance. Or check in the description of ec2 instance. You will find the vol-id there.
Go to that volume --> In Actions --> modify volume.
Upvotes: 2
Reputation: 270154
First, some clarification...
The word "storage" is traditionally used for disk storage. Try to avoid using the word "storage" when referring to memory/RAM.
If you wish to change the memory assigned to an Amazon EC2 instance:
Behind-the-scenes, the instance will be allocated to a different type of host computer that has a different amount of CPU, RAM, Networking, etc. This is why the instance must be stopped, changed, and started.
If you are actually referring to disk storage, then there are two options to increase the storage:
Upvotes: 2