Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
engineering:computer_science:sysadmin:how_to_learn_cloud_engineer_learn_aws [2024/08/16 13:56] – removed - external edit (Unknown date) 127.0.0.1 | engineering:computer_science:sysadmin:how_to_learn_cloud_engineer_learn_aws [2024/08/16 13:56] (current) – ↷ Page moved from refractor_computer_science:sysadmin:how_to_learn_cloud_engineer_learn_aws to engineering:computer_science:sysadmin:how_to_learn_cloud_engineer_learn_aws carlossousa | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== You want to learn AWS? AKA, "How do I learn to be a Cloud Engineer?" | ||
+ | |||
+ | Original Author: [[https:// | ||
+ | |||
+ | Original Source: [[https:// | ||
+ | |||
+ | ===== | ||
+ | |||
+ | So many people struggle with where to get started with AWS and cloud technologies in general. There is popular " | ||
+ | |||
+ | Assumptions: | ||
+ | |||
+ | * You have basic-to-moderate Linux systems administration skills | ||
+ | * You are at least familiar with programming/ | ||
+ | * You are willing to dedicate the time to overcome complex issues. | ||
+ | * You have an [[https:// | ||
+ | |||
+ | How to use this guide: | ||
+ | |||
+ | * This is not a step by step how-to guide. | ||
+ | * You should take each goal and " | ||
+ | * Google is your friend. [[https:// | ||
+ | * Find out and implement the "right way", not the quick way. Ok, maybe do the quick way first then refactor to the right way before moving on. | ||
+ | * Shut down or de-provision as much as you can between learning sessions. You should be able to do everything in this guide for literally less than $50 using the [[https:// | ||
+ | * Skip ahead and read the //Cost Analysis// | ||
+ | * Lastly, just get hands on, no better time to start then NOW. | ||
+ | |||
+ | ===== | ||
+ | |||
+ | This is NOT a guide on how to develop websites on AWS. This uses a website as an excuse to use all the technologies AWS puts at your fingertips. The concepts you will learn going through these exercises apply all over AWS. | ||
+ | |||
+ | This guide takes you through a maturity process from the most basic webpage to an extremely cheap scalable web application. The small app you will build does not matter. It can do anything you want, just keep it simple. | ||
+ | |||
+ | Need an idea? Here: Fortune-of-the-Day - Display a random fortune each page load, have a box at the bottom and a submit button to add a new fortune to the random fortune list. | ||
+ | |||
+ | ==== | ||
+ | |||
+ | * Create an IAM user for your personal use. | ||
+ | * Set up MFA for your root user, turn off all root user API keys. | ||
+ | * Set up Billing Alerts for anything over a few dollars. | ||
+ | * Configure the AWS CLI for your user using API credentials. | ||
+ | * // | ||
+ | ==== Web Hosting Basics | ||
+ | |||
+ | * Deploy a EC2 VM and host a simple static " | ||
+ | * Take a snapshot of your VM, delete the VM, and deploy a new one from the snapshot. Basically disk backup + disk restore. | ||
+ | * // | ||
+ | ==== | ||
+ | |||
+ | * Create an AMI from that VM and put it in an autoscaling group so one VM always exists. | ||
+ | * Put a Elastic Load Balancer infront of that VM and load balance between two Availability Zones (one EC2 in each AZ). | ||
+ | * // | ||
+ | ==== | ||
+ | |||
+ | * Create a DynamoDB table and experiment with loading and retrieving data manually, then do the same via a script on your local machine. | ||
+ | * Refactor your static page into your Fortune-of-the-Day website (Node, PHP, Python, whatever) which reads/ | ||
+ | * // | ||
+ | ==== | ||
+ | |||
+ | * Retire that simple website and re-deploy it on Elastic Beanstalk. | ||
+ | * Create a S3 Static Website Bucket, upload some sample static pages/ | ||
+ | * Register a domain (or re-use and existing one). Set Route53 as the Nameservers and use Route53 for DNS. Make [[http:// | ||
+ | * Enable SSL for your Static S3 Website. This isn't exactly trivial. (Hint: CloudFront + ACM) | ||
+ | * Enable SSL for your Elastic Beanstalk Website. | ||
+ | * // | ||
+ | ==== | ||
+ | |||
+ | * Refactor your EB website into ONLY providing an API. It should only have a POST/GET to update/ | ||
+ | * Move most of the UI piece of your EB website into your Static S3 Website and use Javascript/ | ||
+ | * // | ||
+ | ==== | ||
+ | |||
+ | * Write a AWS Lambda function to email you a list of all of the Fortunes in the DynamoDB table every night. Implement Least Privilege security for the Lambda Role. (Hint: Lambda using Python 3, Boto3, Amazon SES, scheduled with CloudWatch) | ||
+ | * Refactor the above app into a Serverless app. This is where it get's a little more abstract and you'll have to do a lot of research, experimentation on your own. | ||
+ | * The architecture: | ||
+ | * Use your SSL enabled bucket as the primary domain landing page with static content. | ||
+ | * Create an AWS API Gateway, use it to forward HTTP requests to an AWS Lambda function that queries the same data from DynamoDB as your EB Microservice. | ||
+ | * Your S3 static content should make Javascript calls to the API Gateway and then update the page with the retrieved data. | ||
+ | * Once you have the "Get Fortune" | ||
+ | * // | ||
+ | ==== | ||
+ | |||
+ | * Explore the AWS pricing models and see how pricing is structured for the services you've used. | ||
+ | * Answer the following for each of the main architectures you built: | ||
+ | * Roughly how much would this have costed for a month? | ||
+ | * How would I scale this architecture and how would my costs change? | ||
+ | * Architectures | ||
+ | * Basic Web Hosting: HA EC2 Instances Serving Static Web Page behind ELB | ||
+ | * Microservices: | ||
+ | * Serverless: Serverless Website using API Gateway + Lambda Functions + DynamoDB + Route53 + CloudFront SSL + S3 Static Website for all static content | ||
+ | |||
+ | ==== | ||
+ | |||
+ | !!! This is REALLY important !!! | ||
+ | |||
+ | * These technologies are the most powerful when they' | ||
+ | * Automate the deployment of the architectures above. Use whatever tool you want. The popular ones are AWS CloudFormation or Teraform. Store your code in AWS CodeCommit or on GitHub. Yes, you can automate the deployment of ALL of the above with native AWS tools. | ||
+ | * I suggest when you get each app-related section of the done by hand you go back and automate the provisioning of the infrastructure. For example, automate the provisioning of your EC2 instance. Automate the creation of your S3 Bucket with Static Website Hosting enabled, etc. This is not easy, but it is very rewarding when you see it work. | ||
+ | |||
+ | ==== | ||
+ | |||
+ | * As you become more familiar with Automating deployments you should explore and implement a Continuous Delivery pipeline. | ||
+ | * Develop a CI/CD pipeline to automatically update a dev deployment of your infrastructure when new code is published, and then build a workflow to update the production version if approved. Travis CI is a decent SaaS tool, Jenkins has a huge following too, if you want to stick with AWS-specific technologies you'll be looking at CodePipeline. | ||
+ | |||
+ | ===== | ||
+ | |||
+ | These didn't fit in nicely anywhere but are important AWS topics you should also explore: | ||
+ | |||
+ | * IAM: You should really learn how to create complex IAM Policies. You would have had to do basic roles+policies for for the EC2 Instance Role and Lambda Execution Role, but there are many advanced features. | ||
+ | * Networking: Create a new VPC from scratch with multiple subnets (you' | ||
+ | * KMS: Go back and redo the early EC2 instance goals but enable encryption on the disk volumes. Learn how to encrypt an AMI. | ||
+ | |||
+ | ===== Final Thoughts | ||
+ | |||
+ | I've been recently recruiting for Cloud Systems Engineers and Cloud Systems Administrators. We've interviewed over a dozen local people with relevant resume experience. Every single person we interviewed would probably struggle starting with the DynamoDB/ | ||
+ | |||
+ | If you can't find an excuse or get support to do this as part of your job I would find a small but flashy/ | ||
+ | |||