How to Add and Attach EBS Volume to EC2 Instance

When we launch an EC2 instance, sometimes the default storage is not enough. In that case, we can add a new Elastic Block Store (EBS) volume and attach it to our EC2 instance. In this blog, we will learn step by step how to do this in AWS.
Step 1: Open Volumes in AWS Console
Go to AWS Console → EC2 service.
From the left side menu, click Elastic Block Store → Volumes.
Step 2: Create a New Volume
Click on Create Volume.
Select the Size of the volume (example: 100 GB).
Make sure the Availability Zone (AZ) is the same as your EC2 instance.
- Example: If your instance is in
ap-south-1b
, then your volume must also be inap-south-1b
.
- Example: If your instance is in
Click Create Volume.
Step 3: Attach Volume to EC2 Instance
After creating, the new volume will show in the list with status available.
Select the volume → Click Actions → Attach Volume.
Choose your running instance from the dropdown list.
Click Attach.
Conclusion
That’s it! You have successfully added and attached an EBS volume to your EC2 instance. Now you can use it for storing data, logs, or applications.
Related Posts You May Like
Subscribe to my newsletter
Read articles from Shubhanshu Mohanty directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by