Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 21, 2023 08:37 am GMT

Building a Multi-AZ Three-Tier Architecture on AWS: A Comprehensive Guide

Introduction

As a budding cloud engineer, I was recently given the task of creating a three-tier architecture for a web application that previously had a straightforward one-tier architecture. A fault-tolerant, scalable design that could accommodate increasing traffic and demand was the aim. I successfully designed and implemented a three-tier architecture on AWS using multiple availability zones for high availability and fault tolerance after some research and testing. Anyone who wishes to carry out a similar task can use this blog post as a guide.

LongPostAlert!

Architectural Diagram

The first step is to create a three-tier architecture. There are several tools available for this purpose. This AWS webpage provides a summary of several websites that can be used, and I suggest draw.io. A sample architectural plan created is shown below.

Three-Tier Architecture

Deployment

The resources needed can be divided into various sections which will be discussed below.

VPC

The VPC can be created as shown in the following figure.

VPC Creation

Next is to edit VPC settings to enable DNS resolution and hostnames.

Edit VPC Settings

Subnets

The architecture requires six subnets, with three in each availability zone. Two subnets are private while only one is public in each availability zone.

Subnet Creation 1

Subnet Creation 2

For the public subnets, their settings can be edited to enable auto-assign public IPv4 settings.

Edit Subnet 1 Settings

Edit Subnet 2 Settings

Security Groups

Next is to create the security groups.

  1. The first is the web-elb-sg which allows HTTP access from all sources.

Web ELB SG

  1. The web-sg is created next which allows HTTP access from web-elb-sg.

Web SG

  1. The app-elb-sg is created next which allows HTTP access from web-sg.

App ELB SG

  1. The app-sg is next which allows HTTP access from app-elb-sg.

App SG

  1. Finally, db-sg is created which allows MySQL access from app-sg.

DB SG

Internet Gateway

Since this is a new VPC, an internet gateway has to be created and attached to the VPC as shown below.

Create Internet Gateway

Attach IGW To VPC

Route Tables

When a VPC is created, a default route table is created. Any subnets that have no explicit route table associations will be associated with the default route table.

A web-RT route table can then be created with a route with 0.0.0.0/0 destination with the internet gateway as the target.

Create Route Table

Edit Route Table

The public subnets can then be associated with this route table.

Edit Subnet Associations

Launch Templates

  1. Web Tier Launch TemplateA launch template is then created to be used in the web tier. This is associated with the web-sg security group, with auto-assign public IP enabled.

Web Tier Launch Template 1

Some user data can be included to enable Apache web server to run in the instances after creation.

Web Tier Launch Template 2

  1. App Tier Launch TemplateA launch template is then created to be used in the app tier. This is associated with the app-sg security group.

App Tier Launch Template

Target Groups

  1. Web Tier Target GroupA target group is then created to be used for the web tier.

Web Tier Target Group 1

No instances are registered at the moment, but they will be registered automatically once they will be launched by the Auto Scaling Group.

Web Tier Target Group 2

  1. App Tier Target Group.This is a similar process to the web tier target group.

App Tier Target Group 1

App Tier Target Group 2

Application Load Balancers

  1. Web TierThis is set up with the internet-facing scheme. Under mappings, the two public subnets in the two AZs are selected. This is associated with the web-elb-sg security group.

Web Tier ALB 1

A HTTP:80 listener is then associated with the WebTierTargetGroup.

Web Tier ALB 2

  1. App TierThis is set up with the internal scheme. Under mappings, the two app private subnets in the two AZs are selected. This is then associated with the app-elb-sg security group.

App Tier ALB 1

A HTTP:80 listener is associated with the AppTierTargetGroup.

App Tier ALB 2

Auto Scaling Groups

  1. Web TierThe WebTierASG is created and associated with the WebTierLaunchTemplate.

Web Tier ASG 1

The two web public subnets are selected to be used by the ASG.

Web Tier ASG 2

This is then associated with the WebTierELB, with ELB health checks enabled.

Web Tier ASG 3

The group size is selected as shown, with a target tracking scaling policy using the Average CPU utilization metric.

Web Tier ASG 4

Web Tier ASG Review

  1. App TierThe AppTierASG is created and associated with the AppTierLaunchTemplate.

App Tier ASG 1

The two app private subnets are selected to be used by the ASG.

App Tier ASG 2

This is then associated with the AppTierELB.

App Tier ASG 3

The group size is selected as shown, with a target tracking scaling policy using the Average CPU utilization metric.

App Tier ASG 4

App Tier ASG Review

Web Tier Test

After the auto scaling groups are set, it kicks in and creates the instances. Two instances are created initially in each tier since the desired capacity is set to two.

Desired EC2 Capacity

Upon visiting the ELB endpoint, it can be seen that we get responses from both instances as shown below.

Web ELB Returning Traffic From Instance 1

Web ELB Returning Traffic From Instance 2

However, since the minimum capacity is set to one, once the target tracking policy kicks in and the web servers are idle, the capacity is reduced to one in each tier.

Minimum EC2 Capacity

DB Subnet Group

The DB subnet group is created specifying the two availability zones and the two DB subnets created earlier on.

DB Subnet Group

RDS Database Creation

This is created using RDS using the Aurora(MySQL Compatible) engine. Multi-AZ deployment is enabled. The subnet group created in the previous section is selected, specifying the db-sg as the security group to be used.

RDS 1

RDS 2

This creates two DB instances, one in each AZ. One is set as the writer instance in us-east-1b and the other as the reader instance in us-east-1a.

RDS Instances

In order to test failover to see what happens if the writer fails, we can see that the writer instance switches to us-east-1a.

RDS Failover

RDS Instances After Failover

CloudFront Distribution

A CloudFront distribution is created with with the web tier ELB as the origin domain using the HTTP protocol. A custom header is added so that requests coming through the distribution will include it. This will be essential to distinguish traffic that come via the distribution and those that go directly to the ELB.

CloudFront Configuration

WAF Web ACL

A WAF web ACL is used to block any traffic to the ELB that do not contain the custom header, implying that only traffic that go through CloudFront will be allowed to the ELB.

The CustomHeaderACL is created and associated with the WebTierELB.

Web ACL 1

A rule is added to block any request that do not contain the custom header specified in the previous step.

Web ACL 2

The default action is left as Allow to permit any request that does not match the set rule.

Web ACL 3

Web ACL Review

CloudFront Test

Traffic that is sent via the CloudFront endpoint is allowed as shown below.

CloudFront Traffic Success

Traffic sent using the ALB endpoint is now denied.

Web ELB Direct Traffic Denied

Outro

Think of deleting unused AWS resources like eating your vegetables - it may not be fun, but it's necessary for a healthy and cost-efficient cloud environment

Experimenting with these resources can be a fantastic experience, giving you the thrill when you get the desired outcome and even more fun when you have to troubleshoot and figure out why something went wrong.


Original Link: https://dev.to/aws-builders/building-a-multi-az-three-tier-architecture-on-aws-a-comprehensive-guide-2506

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To