Files
devpod-terraform/terraform/userdata.sh
hgn e906fa54a9
Some checks failed
build / tfsec (push) Failing after 1m3s
adding tests
2025-01-18 11:58:06 +01:00

8 lines
286 B
Bash

#!/bin/bash
sudo yum update -y
sudo yum install -y httpd
sudo systemctl start httpd
sudo systemctl enable httpd
echo "<h1>Hello World</h1> <br> <h2> You successfully deployed your first EC2 instance using Terraform</h2>" | sudo tee /var/www/html/index.html
sudo systemctl restart httpd