diff --git a/app-install/main.tf b/app-install/main.tf index e501326..5bb6d0d 100644 --- a/app-install/main.tf +++ b/app-install/main.tf @@ -30,4 +30,14 @@ resource "null_resource" "application-install" { "apt-get install apache2 -y" ] } + + provisioner "file" { + content = < + +

You did it!!

+ +EOT + destination = "/var/www/html/index.html" + } } diff --git a/lab/step2/apache.tf b/lab/step2/apache.tf index c614295..59ae84a 100644 --- a/lab/step2/apache.tf +++ b/lab/step2/apache.tf @@ -37,6 +37,16 @@ resource "null_resource" "application-install" { "apt-get install apache2 -y" ] } + + provisioner "file" { + content = < + +

You did it!!

+ +EOT + destination = "/var/www/html/index.html" + } } # Extra variable required to allow to connect to the workload vsis through the management vsi