#!/bin/bash yum update -y yum install -y httpd instanceId=$(curl http://169.254.169.254/latest/meta-data/instance-id) echo "

Hello World from $instanceId

" > /var/www/html/index.html systemctl start httpd systemctl enable httpd