Skip to content

Educational repo for understanding Networking (VPC) and Compute (EC2) on Amazon Web Services with HashiCorp Terraform

Notifications You must be signed in to change notification settings

alefinvest/core-production-infrastructure-aws-terraform

 
 

Repository files navigation

Core Production Infrastructure on AWS with Terraform

This repo is an educational walkthrough of the core building blocks used to stand up production infrastructure on Amazon Web Services with HashiCorp Terraform. The focus is on Networking via Virtual Private Clouds (VPC) and Compute via Elastic Compute Cloud (EC2).

Ultimately, every component in a cloud infrastructure is a server running some software on a network. Therefore understanding the two primary pieces, Networking (VPC) and Compute (EC2), is essential to gaining flexibility in building and maintaining your own environments.

How to Use This Repo

This repo contains 10 branches representing different states of a baseline production infrastructure using only the bare essentials - servers and a network. The first branch contains nothing but scaffolding, the last branch the full network and servers, while everything else in between is the work-in-progress. Each branch also contains an image that draws an analogy between servers and networking to building a city.

Everything is written using Infrastructure as Code via Terraform so that you can easily deploy and destroy the project. Additionally, to customize and repurpose this infrastructure for your own projects you'd need to:

The Architecture Analogy

The Servers and Compute to City Analogy

The Different States in Descending Order:

  1. AWS Account: Landmass
  2. VPC Network: The City
  3. VPC Subnets: Districts
  4. Route Tables: Roads
  5. Internet Gateway: Highway On-Ramp
  6. NAT Gateway: Connection to On-Ramp
  7. Network ACLs: District Gates
  8. Servers and Services: Buildings
  9. Security Groups: Security Guards
  10. AutoScaling Groups and Load Balancers: Franchises and Info Booths

The Master Branch represents the final state of the repo and is equivalent to #10 from above.

Getting Started

Prerequisites

  1. Have an AWS Account.

  2. Install HashiCorp Terraform.

  3. Have the AWS CLI Installed.

  4. Create an AWS IAM User with Admin or Power User Permissions.

  • this user will only be used locally
  1. Configure the AWS CLI with the IAM User from Step 4.
  1. Create an EC2 Key Pair so that you can access your public servers.
  • This is for debugging. Best practice would be to set up a bastion (aka jump box) and only allow SSH access onto your public / private servers from that.

Using this Code Locally

  1. Clone this repo to an empty directory.

  2. Run terraform init to initialize the project and pull down modules.

  3. Run terraform plan to see what resources will be created.

  4. Run terraform apply to create the infrastructure on AWS!

  5. Navigate to the service_endpoint output by Terraform to see the live service.

  6. When finished, run terraform destroy to destroy the infrastructure.

About

Educational repo for understanding Networking (VPC) and Compute (EC2) on Amazon Web Services with HashiCorp Terraform

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 87.6%
  • Shell 12.4%