adding tests
Some checks failed
build / tfsec (push) Failing after 1m3s

This commit is contained in:
hgn
2025-01-18 11:57:49 +01:00
parent c25f858d89
commit e906fa54a9
3 changed files with 16 additions and 0 deletions

8
terraform/userdata.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/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