From a616993a15f2c2f046bf7bce56712dc5705024ab Mon Sep 17 00:00:00 2001 From: JesseHoch Date: Wed, 10 Apr 2024 12:34:44 -0400 Subject: [PATCH] test --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index eac963f05..b1af7ca4e 100644 --- a/main.tf +++ b/main.tf @@ -36,7 +36,7 @@ resource "aws_instance" "web" { user_data = <<-EOF #!/bin/bash - echo "Hello, World" > index.html + echo "Hello, Everyone" > index.html nohup busybox httpd -f -p 8080 & EOF }