Posts

Showing posts from July, 2020

AWS Task 4

Image
   Task Description Perform task-3 with an additional feature to be added that is NAT Gateway to provide the internet access to instances running in the private subnet.   Performing the following steps: 1.  Write an Infrastructure as code using terraform, which automatically create a VPC. 2.  In that VPC we have to create 2 subnets:     1.   public  subnet [ Accessible for Public World! ]      2.   private subnet [ Restricted for Public World! ] 3. Create a public facing internet gateway for connect our VPC/Network to the internet world and attach this gateway to our VPC. 4. Create  a routing table for Internet gateway so that instance can connect to outside world, update and associate it with public subnet. 5.  Create a NAT gateway for connect our VPC/Network to the internet world  and attach this gateway to our VPC in the public network 6.  Update the routing table of the...