AWS Application Load Balancer
Last updated
Last updated
Aws Application load balancer is the service of AWS which manages the traffic to the EC2 instances according to the increasing load and scales up or down the infrastructure.
We will create the AWS ALB from the following steps :
Create the VPC named "test-vpc".
Create Internet Gateway & attach it to the VPC just created.
Create a Public subnet in the availability zone inside the VPC
Create the routing table and subnet association to the subnets just created.
Create the rule to enable internet access from "Internet Gateway" to "0.0.0.0/0"
Create the EC2 Instances in the subnet just created & assign the Public IP addresses
While creating the EC2 instances pass the User Data :
Configuring the ALB internet facing & associate it with the EC2 instances to balance load using target group
Check the ALB logs & connectivity
Here we have sucessfully configured the ALB into the AWS-VPC