Skip to main content
In this quick demonstration, you’ll learn how to create and delete a Virtual Private Cloud (VPC) in AWS. We’ll walk through choosing a region, navigating the VPC console, configuring a custom VPC, reviewing its settings, and finally cleaning up the resources. This tutorial is part of AWS Networking Fundamentals.

Selecting a Region

  1. Sign in to the AWS Management Console.
  2. In the top-right corner, choose the region where you want to deploy your VPC. VPCs are region-specific.
    In this example, we select US East (N. Virginia).
  1. Enter VPC in the AWS Console search bar and select the VPC service.
  2. In the left-hand navigation pane, click Your VPCs.
  3. You will see a Default VPC (AWS creates one per region). We’ll create a custom VPC instead.
A default VPC already exists in each region. It’s ready to deploy resources but lacks custom CIDR and tagging.

Creating a New VPC

Click Create VPC and choose VPC only: Configure the following parameters:
The image shows the AWS Management Console interface for creating a VPC, with options for configuring VPC settings, subnets, and route tables. The preview section displays the structure of the VPC and its associated resources.
After verifying the settings, click Create VPC.

Reviewing VPC Details

When the VPC creation succeeds, a green status bar appears. Select your new VPC to view its properties:
The image shows the AWS VPC Management Console with details of a specific VPC, including its ID, state, CIDR, and associated resources. The console indicates that the VPC is available and provides options for managing subnets, route tables, and network connections.
Key attributes: At this point, your VPC exists but contains no subnets yet.
The image shows the AWS VPC Management Console, displaying details of a newly created VPC named "demo-vpc" with its status marked as available.

Deleting the VPC

To remove the demo-vpc:
Deleting a VPC is irreversible. Ensure no critical resources are attached before you proceed.
  1. In the left navigation pane, click Your VPCs.
  2. Select demo-vpc.
  3. Choose ActionsDelete VPC.
  4. Type delete in the confirmation box and confirm.

References

Watch Video