Skip to content

Instantly share code, notes, and snippets.

@Bitatlas
Created March 23, 2020 06:46
Show Gist options
  • Save Bitatlas/f6a77de3c40b1cbd6ac1aaf148c50f1c to your computer and use it in GitHub Desktop.
Save Bitatlas/f6a77de3c40b1cbd6ac1aaf148c50f1c to your computer and use it in GitHub Desktop.
EC2 User Data with EC2 Availability Zone echo
#!/bin/bash
# Use this for your user data (script without newlines)
# install httpd (Linux 2 version)
yum update -y
yum install -y httpd.x86_64
systemctl start httpd.service
systemctl enable httpd.service
EC2_AVAIL_ZONE=(curl -s http://169.254.169.254/latest/meta-data/placements/availability-zone)
echo "<h1> Hello World, this is Henrique Centieiro from $(hostname -f) in AZ SEC2_AVAIL_ZONE </h1> " > /var/www/html/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment