In this demo, we will:
ELB-Demo-VPC
ELB-Demo-Instance-1
#!/bin/bash
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
echo "<h1>Hello from $(hostname -f)</h1>" > /var/www/html/index.html
ELB-Demo-Instance-2
#!/bin/bash
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
echo "<h1>Hello from $(hostname -f)</h1>" > /var/www/html/index.html
ELB-Demo-ALB
ELB-Demo-ALB-SG
Allow HTTP traffic from anywhere
ELB-Demo-TG
Notice the hostname changing