Lab1: Introduction to AWS Basics - OT-TRAINING/TerraformAWS GitHub Wiki
Introduction to AWS Basics
- Create a VPC network with the name {YOUR_TEAM_NAME}-vpc
- Create two Public Subnets in VPC, with a range
10.1.0.0/24
10.2.0.0/24
- Create a Nat Gateway in your newly created VPC
- Create two Private Subnets
10.3.0.0/24
10.4.0.0/24
- Create Routing for Private Subnets to send traffic through NAT Gateway
- Create one instance inside your private subnet and install Nginx on it
- Create a LoadBalancer on top of it to access the Nginx page
Let's Start
Create a VPC network with the name {YOUR_TEAM_NAME}-vpc
Thank You