Project Task – Create a VPC
In the following project tasks, you will work in the AWS Production account you created back in Chapter 1, Introduction to AWS Accounts and Global Infrastructure. Recall that you created three AWS accounts – Management, Development, and Production. So far, you have been building the Todo List application solution using the Development account. In this project, you will deploy a VPC in the Todo Plus Production account with a similar configuration to the VPC you built in the Todo Plus Development account.
The infrastructure architecture for your Todo List Application VPC is depicted in the following diagram.
Figure 13.10 – Architectural reference for the Production VPC
The key components of your CloudFormation stack are as follows:
- The VPC is configured using a CIDR range of
10.10.0.0/16
. Recall that the CIDR range you used for the VPC in the Development account was10.0.0.0/16
. It is recommended...