devops-exercises/topics/aws/exercises/launch_ec2_web_instance/exercise.md
abregman 99c4e02ecf Rename exercises dir
Name it instead "topics" so it won't be
strange if some topics included "exercises" directory.
2022-08-02 01:53:56 +03:00

615 B

AWS - Launch EC2 Web Instance

Objectives

Launch one EC2 instance with the following requirements:

  1. Amazon Linux 2 image
  2. Instance type: pick up one that has 1 vCPUs and 1 GiB memory
  3. Instance storage should be deleted upon the termination of the instance
  4. When the instance starts, it should install:
  5. Install the httpd package
  6. Start the httpd service
  7. Make sure the content of /var/www/html/index.html is I made it! This is is awesome!
  8. It should have the tag: "Type: web" and the name of the instance should be "web-1"
  9. HTTP traffic (port 80) should be accepted from anywhere