Cookie Consent by Free Privacy Policy Generator Aktuallisiere deine Cookie Einstellungen ๐Ÿ“Œ CONQUERING THE CLOUD RESUME CHALLENGE: MY JOURNEY


๐Ÿ“š CONQUERING THE CLOUD RESUME CHALLENGE: MY JOURNEY


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: dev.to

As someone coming from a non-IT background wanting to transition into the IT space and looking to build a career specifically as a DevOps Engineer, I enrolled in an AWS Cloud Computing program, while also taking time to learn other fundamental concepts. Upon completing the program, I successfully passed both the AWS Cloud Practitioner and Solutions Architect - Associate exams, earning both certifications.

However, I knew certifications were just not enough. I wanted to dive into real projects where I could roll up my sleeves and actually build something using AWS services. To accomplish this, I started looking out for simple projects that I could begin with, however, a friend recommended the Cloud Resume Challenge (although not beginner-friendly) as a great project to explore (and he wasn't wrong๐Ÿ˜Š๐Ÿ˜Š). So, I had a look at it and saw the challenge as an opportunity to bridge the gap between theory and practical experience with the services it covered. Little did I know the adventure that awaited me...

The cloud resume challenge is actually a challenge by Forrest Brazeal to help people prepare for a job in the cloud industry. This post therefore is my way of sharing my experience, challenges, and skills gained during my pursuit of the Cloud Resume Challenge.

You can find my deployed website here to explore the project in action. Also, my repository, which stores all the codes and resources.

The Beginning: How I Decided to Tackle the Challenge

Actually, the Cloud Resume Challenge consists of six(6) chunks of work (chunk 0-5) with each chunk consisting of a couple of steps to complete. I tackled the challenge one chunk at a time. Additionally, there are optional "Mods" sections (Developer, DevOps, and Security). Although optional, I decided to tackle the DevOps Mod alongside each chunk of the main challenge. It was an invaluable opportunity to go above and beyond in my pursuit of excellence, and to also expand my understanding of DevOps. I skipped the first chunk (chunk 0) since I already had the requirementโ€”โ€”a Cloud Certification.

Chunk 1: Building the Frontend

Setting up the resume website's frontend seemed straightforward at first. I utilized HTML/CSS to craft a simple site and stored its contents in an S3 bucket. I wanted to create a CloudFront distribution to serve the content to viewers globally and even though I had done this before, I decided to read further about CloudFront. This is how I discovered that using a REST API endpoint as the origin, and restricting access with an Origin Access Control (OAC) was a more secure way to go about this as opposed to using a website endpoint as the origin (besides, this is AWS's recommended way). You can read about the differences between REST and website API endpoint here. With the above configuration, I made sure that my website was only accessible via CloudFront, not directly from S3.

Further to this, I created an SSL/TLS certificate in ACM, and attached it to the CloudFront distribution. This was to ensure that CloudFront uses secure HTTP (HTTPS) to serve the website.
I then configured Amazon Route53 to route traffic from my existing domain to my CloudFront distribution.

See a screen snip of the website below

my website

DevOps Way

Lastly, upon verification that my website was working flawlessly, I decided to do things the DevOps way. I converted the S3, Route53, Certificate Manager and CloudFront resources into code using CloudFormation. Then, I set up a GitHub repository and pushed my website codes and CloudFormation template there.

See my architectural diagram for the frontend below.

frontend-architecture

Chunk 2 and 3: Tackling the Backend and Testing

As someone with no prior programming experience, Chunk 2 was a tough nut to crack. Most of my time was spent researching, experimenting, and seeking help from online resources and forums (including ChatGPT). I worked with serverless technologies (DynamoDB, Lambda, API Gateway) and built the application using AWS SAM. Everythingโ€”โ€”from writing the Lambda function using Python, workshopping permissions between Lambda and DynamoDB, to configuring Amazon API Gateway and leveraging JavaScript fetch API to update and retrieve visitor countโ€”โ€”felt like a puzzle to solve.

Another significant challenge I faced was navigating CORS errors and authenticating token issues. After days of persistence, I finally solved the whole puzzle and had all sevices communicating smoothly.

DevOps Way

To wrap up the chunk 2, I set up monitoring for my backend using CloudWatch, Amazon SNS and Lambda. The approach was simple yet effective: I set up CloudWatch Alarms to monitor certain metrics, have notifications sent to my SNS topic when any Alarm enters an alarm state and finally, SNS topic triggers Lambda which in turn extracts the error message from SNS and sends this message to my slack channel, using the slack credentials stored as a parameter in AWS SSM.

The integration of these tools not only enhanced the resilience of my application but also deepened my understanding of DevOps principles and practices.

See my architectural diagram for the backend below.

backend-architecture

Testing

I embraced Cypress for writing end-to-end API and website testing. Cypress has good documentation, so it was pretty easy to get around it.

Conclusively, Chunk 2 especially was a challenging yet rewarding chapter in my Cloud Resume Challenge journey as it helped me gain invaluable insights into backend development and the concept of serverless.

Chunk 4: CI/CD and Infrastructure as Code

This phase of the project although not less significant, was easier and faster to accomplish. I guess one of the reasons was because I had automated the creation of all resources using CloudFormation and AWS SAM. I did make an adjustment which was to transfer my CloudFormation resources into my AWS SAM template. This was because I found out that AWS SAM supports the syntax of CloudFormation. So, I didn't see the need for having two different templates plus, it helped simplify the build and deploy process.

I also implemented CI/CD with GitHub Actions. Since I had a single repository for both backend and frontend, I implemented a multi-job workflow with separate YAML files and both are triggered upon any push to the main branch. One YAML file defines a job that synchronizes website contents to the designated S3 bucket and the other defines a job that builds, deploys, and tests the application built with AWS SAM. I used GitHub's OIDC provider to authenticate to AWS and allow my workflow access to the needed resources in my AWS account. This was to follow security best practice of using temporary credentials for AWS access.

You can see in the screen snips of both successful jobs below, that the second job includes a step for configuring AWS credentials.

s3-sync

sam-deploy

Bringing It All Together

The true magic happened when I pulled down all the application resources and redeployed everything just by pushing a change to my repository. I saw all the pieces converged together to form the complete application. I was very thrilled to see the frontend of my website come to life, seamlessly integrated with backend services and automated testing, without having to spend time manually configuring anything again. It made me trully appreciate the power of automation and CI/CD.

See the Complete architecture below

cloud-resume-challenge-architectural-diagram

Deployed Website

You can find my deployed website here to explore the project in action. Also, my repository, which stores all the codes and resources.

Lessons Learned and Growth Achieved

Through the Cloud Resume Challenge, I discovered the benefits of automation, version control, CI/CD, monitoring and observability, iteration, continuous learning, and of course the importance of implementing proper application security measures. Each chunk I took and conquered became an opportunity to grow, whether it was troubleshooting errors, reading documentations, getting familiarized with a new technology, or reiterating on the way I went about solving a particular problem. As a result, I've built some invaluable skills.

Looking Ahead

After completing the challenge and reflecting on my journey, I realize that the Cloud Resume Challenge is just the beginning. With the newfound skills and confidence I picked, I'm more determined than ever to pursue my goal of becoming an excellent DevOps Engineer. I will be taking time to build my programming skills with Python. In addition, I will be taking on even more projects, starting with a project by David Thomas (Improving application performance using Amazon Elasticache). The journey would undoubtedly be challenging, but just like the Cloud Resume Challenge, I know the rewards will also be undoubtedly worth it.

Final Thoughts

To anyone considering embarking on the Cloud Resume Challenge, my advice is simple: take the leap. As Forrest Brazeal aptly put it, "It's not a tutorial; it's a project spec." And what a project it turned out to be! It's a journey of conquering challenges, unlocking new skills, and discovery of the endless possibilities there are in the Cloud.

Collaboration

If you have some cool project and would like some collaboration to learn and tackle it together, you can reach out to me on LinkedIn. Let's connect and explore the boundless possibilities of cloud technology, and create innovative solutions together.

...



๐Ÿ“Œ CONQUERING THE CLOUD RESUME CHALLENGE: MY JOURNEY


๐Ÿ“ˆ 58.56 Punkte

๐Ÿ“Œ The Cloud Resume Challenge: Conquering the Cloud


๐Ÿ“ˆ 51.88 Punkte

๐Ÿ“Œ Conquering AWS Cloud Challenge


๐Ÿ“ˆ 34.05 Punkte

๐Ÿ“Œ Alexa Is Conquering the World. Now Amazonโ€™s Real Challenge Begins


๐Ÿ“ˆ 30.51 Punkte

๐Ÿ“Œ Alexa Is Conquering the World. Now Amazonโ€™s Real Challenge Begins


๐Ÿ“ˆ 30.51 Punkte

๐Ÿ“Œ Navigating the AWS Cloud: My Cloud Resume Challenge Adventure ๐Ÿš€


๐Ÿ“ˆ 30.23 Punkte

๐Ÿ“Œ Building My Future in the Cloud: Lessons from the Cloud Resume Challenge


๐Ÿ“ˆ 30.23 Punkte

๐Ÿ“Œ Medium CVE-2017-17641: Resume clone script project Resume clone script


๐Ÿ“ˆ 28.59 Punkte

๐Ÿ“Œ Make your resume SEO friendly using JSON Resume with microdata


๐Ÿ“ˆ 28.59 Punkte

๐Ÿ“Œ Common Resume Mistakes to Avoid: Ensure Your Resume is Error-Free and Professional ๐Ÿ“„โŒ


๐Ÿ“ˆ 28.59 Punkte

๐Ÿ“Œ Cloud Resume Challenge: The Beginning


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Tackling the Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ AWS Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Cloud Resume Challenge (AWS)


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Cloud Resume Challenge Chunk 1


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ AWS Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Cloud Resume Challenge Chunk 2


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ AWS Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ The Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Cloud Resume Challenge - Chunk 3


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ AWS Cloud Resume Challenge


๐Ÿ“ˆ 26.69 Punkte

๐Ÿ“Œ Und Microsoft so: Cloud, Cloud, Cloud, Cloud, Cloud, Cloud, Cloud


๐Ÿ“ˆ 24.77 Punkte

๐Ÿ“Œ My Experience Creating a Professional Resume with http://instaresume.io: A Step-by-Step Journey


๐Ÿ“ˆ 24.51 Punkte

๐Ÿ“Œ AWS Resume Challenge using Pulumi, Golang, AWS S3 and AWS CloudFront


๐Ÿ“ˆ 23.16 Punkte

๐Ÿ“Œ Azure Resume Challenge Using Pulumi, Golang, and Azure Blob Storage


๐Ÿ“ˆ 23.16 Punkte

๐Ÿ“Œ AWS Resume Challenge


๐Ÿ“ˆ 23.16 Punkte

๐Ÿ“Œ My AWS Resume Challenge and the troubles I faced.


๐Ÿ“ˆ 23.16 Punkte

๐Ÿ“Œ 35C3 - Conquering Large Numbers at the LHC


๐Ÿ“ˆ 21.65 Punkte

๐Ÿ“Œ 35C3 - Conquering Large Numbers at the LHC - traduction franรงaise


๐Ÿ“ˆ 21.65 Punkte

๐Ÿ“Œ 35C3 - Conquering Large Numbers at the LHC - deutsche รœbersetzung


๐Ÿ“ˆ 21.65 Punkte

๐Ÿ“Œ The Ultimate Guide to React: Conquering Concurrent Mode and Suspense


๐Ÿ“ˆ 21.65 Punkte

๐Ÿ“Œ Secrets Sensei: Conquering Secrets Management Challenges


๐Ÿ“ˆ 21.65 Punkte

๐Ÿ“Œ Harnessing JavaScript's Power: Conquering the Beasts of Large File Manipulation with TypedArrays and WebWorkers


๐Ÿ“ˆ 21.65 Punkte

๐Ÿ“Œ Conquering the Container: A Guide to Dockerizing Your Angular and Flask App


๐Ÿ“ˆ 21.65 Punkte











matomo