IT3110 - System Automation

IT3110 @ utahtech

Terraform howto

Description

For this practice assignment, see if you can create a terraform file that does the following:

The documentation for aws is found here

The user data that the ec2 instance should launch is:

    #!/bin/bash
    echo "Hello, World" > index.html
    nohup busybox httpd -f -p 8080 & 

You should be able to ssh to the instance without using the labsuser.pem and connect to port 8080 of the instance.

After you have written your solution, you can check mine here