Skip to content

akshaykalra92/azure-terraform-three-tier-architecture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform code to deploy three-tier architecture on azure

What is three-tier architecture?

Three-tier architecture is a well-established software application architecture that organizes applications into three logical and physical computing tiers: the presentation tier, or user interface; the application tier, where data is processed; and the data tier, where the data associated with the application is stored and managed.

Problem Statement

  1. One virtual network tied in three subnets.
  2. Each subnet will have one virtual machine.
  3. First virtual machine -> allow inbound traffic from internet only.
  4. Second virtual machine -> entertain traffic from first virtual machine only and can reply the same virtual machine again.
  5. App can connect to database and database can connect to app but database cannot connect to web.

Note: Keep main and variable files different for each component

Solution

The Terraform resources will consists of following structure

├── main.tf                   // The primary entrypoint for terraform resources.
├── vars.tf                   // It contain the declarations for variables.
├── output.tf                 // It contain the declarations for outputs.
├── terraform.tfvars          // The file to pass the terraform variables values.

Module

A module is a container for multiple resources that are used together. Modules can be used to create lightweight abstractions, so that you can describe your infrastructure in terms of its architecture, rather than directly in terms of physical objects.

For the solution, we have created and used five modules:

  1. resourcegroup - creating resourcegroup
  2. networking - creating azure virtual network and required subnets
  3. securitygroup - creating network security group, setting desired security rules and associating them to subnets
  4. compute - creating availability sets, network interfaces and virtual machines
  5. database - creating database server and database

All the stacks are placed in the modules folder and the variable are stored under terraform.tfvars

To run the code you need to append the variables in the terraform.tfvars

Each module consists minimum two files: main.tf, vars.tf

resourcegroup and networking modules consists of one extra file named output.tf

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages