Question: Create a CloudFormation YAML template with the name, amazon-linux-nginx.yaml, that will create an Amazon Linux server in the current AWS region, running the nginx web

Create a CloudFormation YAML template with the name, amazon-linux-nginx.yaml, that will create an Amazon Linux server in the current AWS region, running the nginx web server using the CloudFormation helper scripts including cfn-init, cfn-signal and ensuring that the cfn-hupdaemon is running and will handle updates.

The nginx server must be running on your server. Hint: While developing this template, you probably want to spin up an Amazon Linux instance and do the install of nginx manually first to see what it takes.

Note: The configuration of nginx on Amazon Linux is more complicated than on Ubuntu. Notably, you must either edit the default .conf file, in which you might want to look into something like the following:

perl -077pi -e 's@needle@FOUND@s' haystack 

This command would seach the file named haystack for the first occurence of the string needleand replace that with FOUND -- modifying the haystack file. For testing, leave off the i from -pi.

Alternatively, you could use the files: rule to create the appropriate .conf file.

For reference you may want to check out https://gist.github.com/dragonjet/270cf0139df45d1b7690#file-2b-nginx-md (Links to an external site.)Links to an external site.. Note: however, you will want to remove/ignore the php stuff there.

You must configure nginx to use /var/www/html as the location for the website.

You must have mappings for AMIs in all of the AWS regions.

Your must have template must have parameters for the following:

the key pair to use for connecting to the instance via ssh

the allowed CIDR block that ssh is allowed on, with a default of USF's CIDR block.

Your security group must allow ssh connections only from the specified CIDR block, and web connections from anywhere.

Your template must create a default index.html page in the appropriate location that displays the following info:

Your name in an h1 header and the title of the page

The server's public DNS name and AWS region. For public DNS name, the naive implementation will lead to circular dependencies.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!