Coding the solution
This solution has two parts: the web application and the CI/CD pipeline. You will build them sequentially.
During this chapter, you are going to deploy your resources to the N. Virginia region.
Building the web application
In this section, you will build the architecture discussed in Figure 6.1 using Terraform.
If you have not yet done so, clone the book’s repository from https://github.com/packtpublishing/aws-cloud-projects. Navigate to the chapter6/code
folder.
In this folder, you will find multiple files and folders:
. ├── app │ ├── index.css │ ├── index.html │ └── translate.py ├── buildspec.yml ├── ch2-files │ ├── index.css │ └── index.html ├&...