Skip to content

Terraform examples on AWS (Amazon Web Services). How to manage AWS resources with Terraform.

License

Notifications You must be signed in to change notification settings

alfonsof/terraform-aws-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform examples on AWS (Amazon Web Services)

Terraform is used to create, manage, and update infrastructure resources such as physical machines, VMs, network switches, containers, and more. Almost any infrastructure type can be represented as a resource in Terraform.

This repo contains Terraform code examples on AWS (Amazon Web Services).

These examples are based in the book Terraform: Up and Running by Yevgeniy Brikman.

Quick start

You must have an AWS (Amazon Web Services) account.

The code consists of Terraform examples using HashiCorp Configuration Language (HCL) on AWS (Amazon Web Services).

All the code is in the code folder.

For instructions on running the code, please consult the README in each folder.

This is the list of examples:

  • 01-hello-world - Terraform "Hello, World": Example of how to deploy a single server on AWS (Amazon Web Services) using the shortest script.
  • 02-one-server - Terraform One Server: Example of how deploy a single server on AWS (Amazon Web Services).
  • 03-one-webserver - Terraform Web Server: Example of how deploy a single web server on AWS (Amazon Web Services). The web server returns "Hello, World" for the URL / listening on port 8080.
  • 04-one-webserver-with-vars - Terraform Web Server with vars: Example of how deploy a single web server on AWS (Amazon Web Services). The web server returns "Hello, World" for the URL / listening on port 8080, which is defined as a variable.
  • 05-cluster-webserver - Terraform Cluster Web Server: Example of how deploy a cluster of web servers on AWS (Amazon Web Services) using EC2 and Auto Scaling, as well as a load balancer using ELB. The cluster of web servers returns "Hello, World" for the URL /. The load balancer listens on port 80.
  • 06-create-s3 - Terraform Create S3: Example of how deploy the creation of a S3 bucket on AWS (Amazon Web Services).
  • 07-terraform-state - Terraform State: Example of how to store the information about what infrastructure has been created on AWS (Amazon Web Services).
  • 08-file-layout-example - Terraform File Layout: Example that contains a File Layout example of a Terraform file on AWS (Amazon Web Services).
  • 09-module-example - Terraform Module: Example that contains a module example of a Terraform file on AWS (Amazon Web Services). It shows how to develop (not duplicating code) web server clusters in different environments using a module.
  • 10-multi-repo-example - Terraform Muti Repo: Example that contains a multi repo example of a Terraform file on AWS (Amazon Web Services). It shows how to develop (not duplicating code) web server clusters in different environments using a module in another repo in order to use different version of the module in the environments.
  • 11-loops-example - Terraform Loops: Example that contains the loops example of a Terraform file on AWS (Amazon Web Services).
  • 12-if-statements-example - Terraform If-Statements & If-Else-Statements: Example that contains an If-Statements and If-Else-Statements example of a Terraform file on AWS (Amazon Web Services).
  • 13-if-else-statements-example - Terraform Simple If-Else-Statement: Example that contains the simple If-Else-Statement example of a Terraform file on AWS (Amazon Web Services).
  • 14-zero-downtime-deployment - Terraform Zero-Downtime Deployment: Example that contains a zero-downtime deployment example of a Terraform file on AWS (Amazon Web Services).

License

This code is released under the MIT License. See LICENSE file.

About

Terraform examples on AWS (Amazon Web Services). How to manage AWS resources with Terraform.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published