Day 5.Create GP3 Volume

Published: (December 6, 2025 at 06:32 AM EST)
1 min read
Source: Dev.to

Source: Dev.to

Lab Information

The Nautilus DevOps team is strategizing the migration of a portion of their infrastructure to the AWS cloud. Recognizing the scale of this undertaking, they have opted to approach the migration in incremental steps rather than as a single massive transition. By segmenting large tasks into smaller, more manageable units, the team can execute the migration in gradual phases, ensuring smoother implementation and minimizing disruption to ongoing operations. This granular approach allows for better control, risk mitigation, and optimization of resources throughout the migration process.

Create a GP3 Volume

Requirements

  • Name: xfusion-volume
  • Volume type: gp3 (General Purpose SSD)
  • Size: 2 GiB

Steps

  1. Log in to the AWS Console using the provided link and credentials.
  2. Navigate to the EBS Volumes page:
    • Search for EC2 in the AWS console.
    • In the left navigation pane, scroll to Elastic Block StoreVolumes.
  3. Click Create volume.
  4. Fill in the required fields:
    • Volume type: General Purpose SSD (gp3)
    • Size: 2 GiB
    • Availability Zone: Choose any AZ (e.g., us-east-1a).
  5. Scroll to Tags and add a tag:
    • Key: Name
    • Value: xfusion-volume
  6. Click Create volume.

Resources & Next Steps

  • Full Code Repository: KodeKloud Learning Labs
  • More Deep Dives: Whispering Cloud Insights – read other technical articles
  • Join Discussion: DEV Community – share your thoughts and questions
  • Let’s Connect: LinkedIn

Credits

All labs are from KodeKloud. Thanks for providing them.

Back to Blog

Related posts

Read more »

Day 13.Create AMI from EC2 Instance

Lab Information The Nautilus DevOps team is migrating a portion of their infrastructure to AWS. To manage the complexity, they are breaking the migration into...

Day 12.Attach Volume to EC2 Instance

Lab Information The Nautilus DevOps team is creating services on AWS and breaking the migration into smaller tasks for better control, risk mitigation, and res...