<?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: Alex Benavente</title>
    <description>The latest articles on DEV Community by Alex Benavente (@alexbenavente).</description>
    <link>https://dev.to/alexbenavente</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%2F688558%2F62e35a5a-b818-4f61-b361-734a40b786ca.png</url>
      <title>DEV Community: Alex Benavente</title>
      <link>https://dev.to/alexbenavente</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alexbenavente"/>
    <language>en</language>
    <item>
      <title>Cloud Resume Challenge</title>
      <dc:creator>Alex Benavente</dc:creator>
      <pubDate>Sat, 29 Jan 2022 19:27:16 +0000</pubDate>
      <link>https://dev.to/alexbenavente/cloud-resume-challenge-5bdk</link>
      <guid>https://dev.to/alexbenavente/cloud-resume-challenge-5bdk</guid>
      <description>&lt;p&gt;I recently came across the “Cloud Resume Challenge” created by Forrest Brazeal. This seemed like a rewarding project to learn and expand my skills in the field of DevOps. It is a personal project designed for novices to get hands-on experience implementing systems and workflows that they would use in a DevOps role. The Challenge is as follows:&lt;/p&gt;

&lt;p&gt;&lt;u&gt;The Cloud Resume Challenge - AWS&lt;/u&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  Certification
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Your resume needs to have the AWS Cloud Practitioner certification on it.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I had already earned the AWS Cloud Practitioner certification when I came across this challenge, so this first step was already accomplished. I hope to use this project as a learning experience as I pursue earning more AWS certifications in my career.&lt;/p&gt;




&lt;h6&gt;
  
  
  HTML
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Your resume needs to be written in HTML.&lt;/em&gt; &lt;/p&gt;

&lt;h6&gt;
  
  
  CSS
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Your resume needs to be styled with CSS.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I am already versed in HTML and CSS. I found a free Bootstrap template to modify and personalize a simple Resume webpage design.&lt;/p&gt;




&lt;h6&gt;
  
  
  Static Website
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Your HTML resume should be deployed online as an Amazon S3 static website.&lt;/em&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  HTTPS
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;The S3 website URL should use HTTPS for security.&lt;/em&gt; &lt;/p&gt;

&lt;h6&gt;
  
  
  DNS
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Point a custom DNS domain name to the CloudFront distribution, so your resume can be accessed at something like my-c00l-resume-website.com.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I logged into my AWS account and created an S3 bucket configured to host a static website and store my newly created HTML and CSS files. I used the AWS CloudFront service to distribute web traffic to my S3 bucket and to secure using HTTPS. I used AWS Route 53 to register a custom domain name and then configured the DNS routes to direct traffic to my newly configured CloudFront distribution.&lt;/p&gt;




&lt;h6&gt;
  
  
  Javascript
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Your resume webpage should include a visitor counter that displays how many people have accessed the site.&lt;/em&gt; &lt;/p&gt;

&lt;h6&gt;
  
  
  Database
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;The visitor counter will need to retrieve and update its count in a database somewhere.&lt;/em&gt; &lt;/p&gt;

&lt;h6&gt;
  
  
  API
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Create an API that accepts requests from your web app and communicates with the database.&lt;/em&gt; &lt;/p&gt;

&lt;h6&gt;
  
  
  Python
&lt;/h6&gt;

&lt;p&gt;&lt;em&gt;Write Python code in a Lambda function; a common language used in back-end programs and scripts – and its boto3 library for AWS.&lt;/em&gt; &lt;/p&gt;

&lt;p&gt;I used AWS DynamoDB as the database to store my Visit count value. I created an AWS Lambda function written in Python to update this value in my DynamoDB. I learned I had to make sure I gave my Lambda function Permissions to access the DynamoDB. I used AWS API Gateway to call my Lambda function. Again I struggled a bit troubleshooting the API integration with my page because of another Permissions issues, but eventually found out I needed to change my CORS configuration to get the call working. I added Javascript to my website files to make the API call and update my HTML webpage.&lt;/p&gt;




&lt;p&gt;I will update as I continue moving through the rest of the challenge.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
