AWS S3M Pattern: Terraform & DevOps for a 10 Years Child

Part-2: Terraform & DevOps

Naoufal EL GAFA
Level Up Coding

--

“Tricks make you save time to Code & Deploy your Terraform Config File Easily”

As a Software Architect or a FullStack-Developer (someone with a developer background), I always had this fear of the syntax of Terraform configurations (HashiCorp Configuration Language: HCL).

Every time I read an example of a file with this syntax I couldn’t understand anything and I didn't know why.

However, I figured out why: “it was because my brain was formatted or programmed about how to design software, how to make an algorithm to solve a problem, etc … And nothing else”, so I tried to understand the Terraform config file with this mindset and I complicated my understanding of a simple configuration language (HCL),

So I wrote this story to share with you Tips & Tricks for a better understanding and deploying Terraform by implementing S3M Pattern that I wrote before.

To understand better the implemented example, please refer to my previous story

So, Let’s go 😉

Prerequisite:

→ AWS Account

AWS Programatically Acount with Programmatic access and Admin Permission

AWS CLI configured in your laptop (if you want to run your infra from you laptop (~/.aws/config )

→ A better understanding of S3M Pattern

Terraform: What? Why? How?

What Is Terraform?

Is an IaC Software Tool 😲 →Infra as Code Software Tool 😳→ A software that allows us to code our InfraStructure 😜.

Coding infra may be done with two methods: Imperative (How) or Declarative (What) or both together.

Imperative :

  • Focuses on How the infrastructure must be done
  • Defines specific commands that need to be executed in the appropriate order to end with the desired conclusion

Declarative :

  • Focus on What the eventual target configuration should be
  • Defines the Desired State and the system executes what needs to happen to achieve that Desired State

And Terraform is Declarative, so now you know why as a software architect, I complicated things, my mind was always focusing on How (always designing how), but if you need to understand easily Terraform you should switch your mind on What and everything will become too easy 😉

Why should we use it?

Terraform makes a great tool when it comes to DevOps & Portability. There are the reasons to consider Terraform as one of your IaC tools :

  • Portability: This is the big problem that Terraform Solves: it makes it easy to Duplicate Infra in different environments (DEV, PRE, PROD) at the same Cloud Provider. Also and because Terraform is completely platforms agnostic, it facilitates the coding resources of the new Cloud Provider if the company decides to change it Cloud Provider.
  • Terraform lets you define infrastructure in a config file and will enable you to track changes to infrastructure with ease by having your code in source control (Git), building it, and deploying it.
  • Terraform has a lively community and is open source, there is a massive community developing around this tool. Many people are already using it, and it’s easier to find people who know how to use it, plugins, extensions, professional support, etc. This also means Terraform is evolving at a much faster rate. They do releases very often.
  • Terraform’s speed and operations are exceptional. One cool thing about Terraform is, its plan command lets you see what changes you’re about to apply before you apply them.

How to Use it?

# Declare wish provider you want to use
provider "aws" {
region = "us-east-2"
}
# Declare a VPC
resource "aws_vpc" "s3m-vpc" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
tags = {
"project" = "S3M"
"tuto"="medium"
}
}
  • In the same folder open a terminal and run these commands
terraform init

this command is to download all dependencies for your cloud provider (like npm install or dotnet restore for developers lol )

terraform plan 

this command is for creating an execution plan. Terraform performs a refresh, unless explicitly disabled, and then determines what actions are necessary to achieve the desired state specified in the configuration files.

You can skip this command and apply directly your IaC, but is recommended to see what you have in your plan and fix errors or bugs before applying your infra

terraform apply

The terraform apply command is used to apply the changes required to reach the desired state of the configuration, or the pre-determined set of actions generated by a terraform plan execution plan.

  • You can now go to your account and verify if the VPC is created in the us-east-2 region
  • And finally, to destroy what are you created, you can run this command :
terraform destroy

Tips to implement Terraform on Complex Architectures

In this section, I’ll give you some tips & tricks to save your time when coding the infra of a Complex Architecture.

As an example, we will take the S3M Pattern that I wrote before. As a reminder this the architecture :

Terraform With DevOps explained to a 10 Years Child — S3M Pattern
S3M Pattern

Tip 1: To-Do Liste of What we want 😜 :

As you can see, for this pattern we need these blocks:

  1. VPC with three subnets (two privates and one public)
  2. APIGateway with VPC Link
  3. Authorizer (Lambda and API Gateway)
  4. ECS Cluster Fargat with TaskDefinition and Service
  5. NLB (Network Load Balancer with a TargetGroup)
  6. S3 For Static Web Site Hosting

Tip 2: Create a *.tf file for each block😄:

  1. vpc.tf
  2. api-gateway.tf
  3. authorizer.tf
  4. cluster.tf
  5. load-balancer.tf
  6. s3.tf
  7. To properly organize our code, we can make also a folder for different policies (JSON files)

Tip 3: The Magic of Copy-Past 😅

  1. Open the Terraform Documentation for AWS
  2. For each file: copy-past the configuration and adapt it like the image below:
Terraform With DevOps explained to a 10 Years Child — filter
Filter on Terraform

So, for example, the vpc.tf file will look like this if we implement it with the S3M Pattern:

You can clone the complete example from here ✌️ and follow the “How to Use it” explained before.

If you are asking: what about the fulfillment’s order ?! Should we start with VPC, ECS, APIGateway or…?

Answer : Is not your problem 😝, you don’t need to care about this😃, your job is to Describe, and Terraform Job is to Define the best way to execute your staff 😉

DevOps Philosophy

Definition

What is really DevOps? DevOps is not a job title 😠, in fact, it is a set of practices that combines software development (Dev) and IT operations (Ops).

DevOps initiatives can create cultural changes in companies by:

  • Transforming the way operations, developers, and testers collaborate during the development and delivery processes 😃.
  • Getting these groups to work cohesively is a critical challenge in enterprise DevOps adoption 😃.
  • DevOps is as much about the culture, as it is about the toolchain.

So when some companies are looking for a DevOps engineer within their workflows, it means that they are not ready to change their philosophy and culture, and this may just deepen the disconnect between developers and operational teams 😅.

Toolchains

DevOps tools fit into one or more activities, which supports specific DevOps initiatives: Plan, Create, Verify, Package, Release, Configure, Monitor, and Version Control. For more info click here

I’ll keep it simple in this story by focusing on these tools: Create (Code), Package (Artifact), Release (Deploy), Configure (IaC), Version Control.

Automatize all with GitHub Actions: (Get your Hands Dirty)

Now that you know what are Terraform & DevOps about, let's make some automatization to Package, Release and Configure the delivery process of the Backend, FrontEnd, and IaC (Config) with GitHub Actions

GitHub Actions makes it easy to automate all our software workflows with CI/CD. we will use it to Package, Release, and Configure our code right from GitHub.

Prerequisites:

→ GitHub Account: you will need a GitHub account to clone my repo examples in yours to automatize and build pipelines

→ Terraform Free Account: Explained in IAC Repository below

For the automatization I make 3 Pipeline, one for each Repository:

  1. IaC Repository
  2. API Repository
  3. Static Web Site Repository

As you can see, for each Repo I have a Yaml file that exists in /.github/workflows. This file will be interpreted by the Action Workflow of GitHub to run a pipeline that builds and deploys.

All Yaml files are well commented for a better understanding 😃

  1. For IaC: The pipeline will simply apply our infra
  2. For API: The pipeline will containerize our package in a docker image and push it to Ecr Repo
  3. For Static web Site: The pipeline will build our Angular project and deploy it to S3 Static Web Hosting

IaC Repository :

To automatize the deployment of your Terraform IaC code, you have two choices :

In our case, I choose to make it with Terraform Cloud to manage all terraform staff and workflow on the terraform cloud workspace, so it makes it easy for a team to manage and approve architectures and it is deeply integrated with Terraform’s workflows and data, which allows it to make Terraform significantly more convenient and powerful.

So firstly you should create a free account with Terraform and follow these steps.

1- Create Your Organization

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Organization
Terraform organization

Once the organization created, it’s time to create the workflow

2- Create The Workflow

To do so, click on API-driven workflow as shown in the image below and create your workflow

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Worflow
Terraform Workflow

Name your workspace and create it

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Workspace
Terraform workspace

Once the workspace is created, terraform will generate for you this code to use in your main config file (main.tf) that exists in your repository.

So, copy-paste this code (a full example can be found in my repo)

terraform {
backend "remote" {
organization = "your organization name"
workspaces {
name = "your workspace name"
}
}
}

3- Generate a Terraform Cloud User API token:

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform User Token API
Terraform User API Token
  • Give it a description to help you identify this token later and click on “Create API token”
Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Token
  • Copy the generated token
Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Token
Terraform Generated Token

4- Store the generated token as a GitHub secret on the IaC Repository:

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Github secrets
Repo Secret

You can follow the GitHub Docs here.

5- Store the AWS Keys on Terraform Cloud Environment Variables :

We need to save our AWS Access Key and Secret Key on Terraform Environment Variable, so when the Github pipeline run, it will use these credentials to Plan and Apply our infra to the AWS Account.

To do so go to https://learn.hashicorp.com/tutorials/terraform/cloud-workspace-configure and follow the steps bellow

  • Add Environment Variables
Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Environment Variables
Create Terraform Environment Variables
  • Create these two environment variables and make them sensitive:
Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Terraform Environment Variables
Terraform Secrets

For more info about managing secrets on Terraform, you can follow this Blog

6- Run your pipeline on GitHub

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — GitHub Pipeline
GitHub Pipeline

API Repository :

After the deployment of our Infrastructure, now it’s time to deploy our API, otherwise, the pipeline will simply push a docker image into ECR (that’s all 😄)

Don’t forget to add the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY in the secret of your API Repository, and run the pipeline via the GitHub Action Tab

The full example can be found here

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Github Secrets
API Secrets

Static Web Site Repository :

Because we did not attach a custom domain name to our API Gateway we should copy the EndPoint generated by our IaC Deployment and past it to the environment variable of the Static Web Site

Another option more complicated is to store the environment variable in a Configuration Manager like (AWS secrets manager) or use a Cloud Agnostic Tools like SOPS

1- Go to your APIGateway Dashboard, click on the created API, go to Stages and copy the endpoint

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Api Gateway EndPoint
API Gateway EndPoint

2- Go to your Static WebSite Repository, update the environment file and make a commit

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — S3 Front
Static Web Site Environment

3- Run your Pipeline (Don’t forget to add the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY in the secret of your API Repository, and run the pipeline via the GitHub Action Tab)

4- Check if everything works by going to your s3 static web site Endpoint, copying the link, pasting it to your browser, and clicking on the “Get weather” button

Terraform With DevOps explained to a 10 Years Child — S3M Pattern — S3 Link
S3 link
Terraform With DevOps explained to a 10 Years Child — S3M Pattern — Front check
Final Check

Greaaaaaaaaaat, everything automatized and worked like magic 😄

Conclusion

In real life, coding and managing the source code of the Infra is such a great thing because it allows the Company Architect to follow all changeset and apply only the changes without destroying all the infra architecture.

In real life, coding and managing the Infra source code is such a great thing as it allows the company architect to keep up with all the changes and apply only the necessary updates without destroying the entire system.

The IaC philosophy also facilitates the portability of the Infrastructures:

  • Between different clouds provider
  • Between different environment of the same cloud provider

When we tied IaC with real DevOps philosophy, we save much more the time of process delivery while keeping a better quality of code.

If you are new to these technologies (AWS, IaC, DevOps), this blog will help you understand the sequence of the different bricks (AWS, IaC, DevOps) and will prevent you from following many tutorials and going in all directions.

I wish to thank by the way Soufian Belehrache for his technical advice.

If you have any remarks, or if something doesn’t seem clear, please leave a comment or contact me on my Fb Page, Twitter, or via my website

Finally, I have a challenge for you:

  • Create a GitHub account if you don't already have one
  • Create a Terraform Free Account
  • Apply what are you learned in this Story “Section Automatize all with GitHub Actions: (Get your Hands Dirty)”
  • Good luck

See you at the next Story ✌️.

--

--