In this demo, we will:
ELB-Demo-VPCELB-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.htmlELB-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.htmlELB-Demo-ALBELB-Demo-ALB-SGAllow HTTP traffic from anywhereELB-Demo-TGNotice the hostname changing