
Ariel Cintron
Here is the bash script that is missing under Resources. It will be use to bootstrap.
#!/bin/bash
yum update -y
yum install httpd -y
service httpd start
cd /var/www/html
echo "<html><body><h1>Hello Cloud Gurus </h1></body></html>" > index.html
This works, but you have to get it right before the instance launches for the first time. Otherwise, you have to go through the console and manually run any missing commands.