DEV Community

Logan Toler
Logan Toler

Posted on • Updated on

The Cloud Resume Challenge

Being a recent graduate and entry-level professional during a pandemic is quite challenging. At the height of the COVID-19, I quickly experienced the unfortunate reality that millions of Americans face. The amount of free time I have is a bit overwhelming. I used to spend my days designing, implementing and supporting chatbot solutions for large, well-known brands, but now I am searching for a new role. The silver lining to the situation is that I could spend more time with family, personal projects, and hockey. I learned about the Cloud Resume Challenge through my brother and accepted not only in hopes of finding a position in the cloud sector but, in the very least, improve my skills on AWS. 


This 16-step challenge requires the creation of a website to showcase my resume with a site view counter. It dives deeper by requiring the use of AWS Lambda, API Gateway, and DynamoDB to operate the view counter, host the site on an S3 bucket, and have the site delivered over HTTPS using CloudFront. Additionally, this all must be automated using the AWS Serverless Application Model (SAM) and a CI/CD pipeline. 

I completed the challenge by breaking the project into groups with similar tasks. 


  1. I started by designing my website in HTML using Bootstrap. Next, I created a CloudFormation template to automatically deploy my CloudFront distribution linking an S3 bucket as an origin so that the site is only accessible through CloudFront. Lastly, I purchased my domain and set the CNAME to point to CloudFront.
  2. I created my development environment by installing python, aws cli, aws sam cli, and httpie. I used VSCode with the AWS and python plugins, as my IDE. 
  3. Creating the API, lambda function, and DynamoDB table was the most intensive part. A few essential items that I needed to learn:

              - How these services worked in tandem
              - How to create a table that updated a single record verse a table that                  would generate a record per visit
              - Learn python
              - How to call an API

        For my lambda function, I used DynamoDB's atomic counter feature to
        update the table each time my API endpoint gets called. Additionally, I
        included a function to serialize / deserialize the response to bypass API
        Gateway's decimal encoder limitation. My API uses a single GET method
        with CORS enabled. An XMLHttpRequest written in JavaScript is used to
        call the API and displayed using a DOM element.

4.  Lastly, I built a CI/CD pipeline for the front and back end of my site. My first       pipeline uses GitHub actions and workflow to push any changes in the       master branch of my repo to S3. My second pipeline has the same       functionality except it utilizes AWS Code Deploy to build, test, and deploy       my SAM template. Testing was performed by passing a key/value payload       to the lambda function.

Tasks in point 1 were simple. However, the rest was unknown to me. I have little to no programming knowledge and only really understand EC2, S3, and VPC. However, I am proud to say that after two months of many late nights and 'aha' moments, I completed the challenge and present to you: https://resume.logan-toler.dev

It felt as if for every problem I needed to solve, there were five things I need to learn and ten more things to learn about to understand the first five things. It was an endless rabbit hole. But, I enjoyed this challenge because it felt like I was building a solution that a client would request or a project to fulfill a business need. It was a great learning experience to help me recognize my skills and talents and learn new ones.

Top comments (2)

Collapse
 
jclm1rt profile image
Julio César Lapaca Martínez

Excellent work, congratulations! keep going and thanks for sharing it !!

Collapse
 
nickharrison profile image
nickharrison

Nice work! Thanks for sharing!