A virtual private cloud (VPC) is a virtual network dedicated to your AWS account. It is an isolated network where you can spin your resources in.
Requirements:
- An AWS account (of course!)
- Region - A VPC resides in a particular region (the same cannot be said about the Availability zone (AZ).. in fact a VPC spans across all the Availability Zones in the region in which it is defined.
Steps:
- Sign in to your AWS account.
- Under Services >> Networking >> VPC
- VPC Dashboard >> Your VPCs (You should find one VPC created by default with a subnet 172.31.0.0/16)
- Let's create a new one. Click on "Create VPC" button
Details;
- Name tag : Name of the VPC (self evident)
- IPv4 CIDR block : Specify your supernet from which smaller subnets would be created and allocated to the resources
- We are not using IPv6 here
- Tenancy : Dedicated tenancy ensures all EC2 instances that are launched in a VPC run on hardware that's dedicated to a single customer. The default is shared.. where the instances from multiple customers can reside on the same hardware.. More on the security constraints of this, later.
Comments
Post a Comment