Skip to content

Instantly share code, notes, and snippets.

@brijesh-deb
Last active December 23, 2017 08:43
Show Gist options
  • Save brijesh-deb/e7289a878292b06e6039e23f38472168 to your computer and use it in GitHub Desktop.
Save brijesh-deb/e7289a878292b06e6039e23f38472168 to your computer and use it in GitHub Desktop.
#AWS #VPC

Create VPC

  • Go to VPC Dashboard, select correct region (VPC is created for a specific region)
  • VPC > Start VPC Wizard >
  • Select a VPC Configuration> VPC with a Single Public Subnet
  • VPC with a single Public Subnet
    • IP CIDR block: 10.0.0.0/16
    • VPC name:[name]
    • Public subnet: 10.0.0.0/24 [ 10.0.0.0 - 10.0.0.255]
    • Availability Zone: select a AZ
    • Subnet name:[name]

Add Internet Gateway to Routing Table

  • Select VPC created in last section
  • Select Route Table link
  • Select Routes tab > Edit > Add another route
  • Destination: 0.0.0.0/0 [Anywhere]
  • Target: select internet gateway listed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment