IT3110 - Advanced System Automation and Cloud Infrastructure
Week 9 Assignment
Objective:
In this assignment, you will design and implement an AWS cloud infrastructure using Terraform. You will need to build a scalable and secure system that meets the requirements of a fictional company, TechNova, which is scaling its operations. The infrastructure should be optimized for availability, security, and cost efficiency.
In the end, you should be able to demonstrate that your web page loads.
You should utilize chatGPT but you should make sure you understand what it generates.
Scenario:
TechNova has a web application that needs to be deployed in AWS. The application should be highly available across multiple regions, secure, and optimized for cost-efficiency. You are tasked with creating a Terraform configuration to provision the following resources and implement certain requirements.

Keep in mind:
- Your load balancer will be in a public subnet
- Your instances will be in private
- You should also add auto-scaling groups
- Use a user-data script to automatically install Apache or Nginx and deploy a static HTML page saying “TechNova Web App”.
- You must use modular Terraform code: Organize your Terraform code into reusable modules (e.g., one module for VPC creation, one for EC2, one for RDS, etc.). This will require you to design and create proper module structures.
- Tagging: Properly tag all resources (e.g., Name, Environment, Department, etc.) for management and billing purposes.
- Networking: Use private IPs for communication between resources where possible. Public IPs should only be assigned to resources that need internet access, like the ALB.
Deliverables:
- Show that your terraform creates the resources required
- Provide a short report (500-750 words) explaining:
- The design choices you made for scalability and high availability.
- Analyze two resources that terraform creates for you. Describe what it does.
- Any challenges you faced while designing the infrastructure and how you overcame them.
- What you learned from using Terraform and from doing this assignment