<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vincent D'Onofrio</title>
    <description>The latest articles on DEV Community by Vincent D'Onofrio (@donofriov).</description>
    <link>https://dev.to/donofriov</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F240645%2F5448ac4a-6846-4a46-ad4b-026953f79573.jpeg</url>
      <title>DEV Community: Vincent D'Onofrio</title>
      <link>https://dev.to/donofriov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/donofriov"/>
    <language>en</language>
    <item>
      <title>Cloud Resume Challenge
</title>
      <dc:creator>Vincent D'Onofrio</dc:creator>
      <pubDate>Sat, 11 Jul 2020 12:17:57 +0000</pubDate>
      <link>https://dev.to/donofriov/cloud-resume-challenge-11a2</link>
      <guid>https://dev.to/donofriov/cloud-resume-challenge-11a2</guid>
      <description>&lt;p&gt;At the end of April 2020, Forrest Brazeal posted a &lt;a href="https://forrestbrazeal.com/2020/04/23/the-cloud-resume-challenge/"&gt;challenge on his blog&lt;/a&gt; to help anyone who completes the challenge get a job in the cloud. As I was wrapping up the final tasks this week, I was promoted to a DevOps Engineer where I will be working a lot more in the cloud 🥳&lt;/p&gt;

&lt;p&gt;I still wanted to complete the challenge as I learned quite a bit along the way and each task was well thought out in what experience you will take away from it and how the entire project comes together.&lt;/p&gt;

&lt;p&gt;Here is my Cloud Resume Challenge: &lt;a href="https://vincentdonofr.io"&gt;https://vincentdonofr.io&lt;/a&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Certification
&lt;/h1&gt;

&lt;p&gt;I have a subscription to &lt;a href="https://linuxacademy.com/"&gt;Linux Academy (LA)&lt;/a&gt; where I have been taking the &lt;a href="https://linuxacademy.com/course/aws-certified-solutions-architect-associate-level/"&gt;AWS Certified Solutions Architect – Associate Level Course&lt;/a&gt; when I first heard about the challenge. I still have a ways to go in the course as it is 57 hours long, so I wanted to see if I could take the AWS Cloud Practitioner exam. I went in to the Linux Academy CP exam and ended up failing. I realized there was quite a bit that I had missed out on by jumping straight into the Solutions Architect course. &lt;/p&gt;

&lt;p&gt;I took the LA AWS Cloud Practitioner Course (on double speed in the parts that were review 🙃) and took the practice exam until I got 90% or higher three times. I scheduled my exam and after quite a bit of back and forth with the exam proctors because I took it at home, I was able to start. The LA course was a great preparation and I passed without too much of an issue. I definitely didn't ace it though!&lt;/p&gt;

&lt;h1&gt;
  
  
  HTML/CSS/JavaScript
&lt;/h1&gt;

&lt;p&gt;These sections were more of a review as I've been working with and building websites for over a decade in some capacity or another.&lt;/p&gt;

&lt;h1&gt;
  
  
  Static S3 Website
&lt;/h1&gt;

&lt;p&gt;This was my first time creating a static website in a S3 bucket but it was a pretty quick process due to the great AWS documentation and plenty of other resources just a quick Google away. The main takeaways here for me were learning how to set bucket permissions and which permissions I need for a static website.&lt;/p&gt;

&lt;p&gt;I also learned how to use two buckets, one for vincentdonofr.io and one for &lt;a href="http://www.vincentdonofr.io"&gt;www.vincentdonofr.io&lt;/a&gt; and forward the latter to the former.&lt;/p&gt;

&lt;h1&gt;
  
  
  HTTPS
&lt;/h1&gt;

&lt;p&gt;Setting up a CloudFront distribution is where things started to get a bit tricky. I ended up having to create a Custom SSL Certificate because I'm using a custom domain. This was completely foreign to me but again the AWS Documentation made it a breeze.&lt;/p&gt;

&lt;h1&gt;
  
  
  DNS
&lt;/h1&gt;

&lt;p&gt;Purchasing a custom domain was the easiest part of all of this 😅 but it all started to make sense if I thought about these steps in reverse. I really needed to have the domain, then create the cloudfront distribution, then crease DNS aliases, then get a certificate, then point to my S3 buckets.&lt;/p&gt;

&lt;h1&gt;
  
  
  Database
&lt;/h1&gt;

&lt;p&gt;I learned quite a bit about Dynamodb in my Linux Academy courses so that definitely helped speed up this section.&lt;/p&gt;

&lt;h1&gt;
  
  
  API
&lt;/h1&gt;

&lt;p&gt;Creating an API Gateway and everything about it was new to me so here and Infrastructure as Code is where I spent most of my time.&lt;/p&gt;

&lt;h1&gt;
  
  
  Python / Tests
&lt;/h1&gt;

&lt;p&gt;I have written some test suites in python over the last few years so this section was more of a review. I created my first Lambda function here which was essentially just pasting in code that I was familiar with and clicking create.&lt;/p&gt;

&lt;h1&gt;
  
  
  Infrastructure as Code
&lt;/h1&gt;

&lt;p&gt;I initially wanted to start here when setting up the DynamoDB table, API Gateway, and Lambda function but I felt it was a lot easier to write the infrastructure code once I knew how all of the AWS services worked. I ended up creating everything manually a couple times, deleting everything, and then ported it over to code to see if I could replicate what I created in the AWS Console. This was also my first time working with AWS SAM and the CLI tool made building and deploying the code as simple as two commands!&lt;/p&gt;

&lt;h1&gt;
  
  
  Source Control
&lt;/h1&gt;

&lt;p&gt;I have quite a bit of experience with git and GitHub so this was just a few minutes to setup.&lt;/p&gt;

&lt;h1&gt;
  
  
  CI/CD Backend/Frontend
&lt;/h1&gt;

&lt;p&gt;As part of my new role as a DevOps Engineer, I was working with migrating our build and deploy pipeline to GitHub Actions so this was a great way of validating all of the steps I learned at work over the last few months.&lt;/p&gt;

&lt;h1&gt;
  
  
  Blog post
&lt;/h1&gt;

&lt;p&gt;I've never published a blog post before so here it is! I really enjoyed this challenge and it feels great to complete the full project. There are a ton of improvements I've been thinking about along the way, so I definitely will be iterating on this over time.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>devops</category>
      <category>100daysofcloud</category>
    </item>
  </channel>
</rss>
