diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 90ac7de..54bc071 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -34,7 +34,6 @@ "GitHub.copilot-chat", "stkb.rewrap", "ms-python.python", - "ms-vscode.node-debug2", "yzhang.markdown-all-in-one" ] } diff --git a/course_files b/course_files new file mode 100755 index 0000000..91ddb0e --- /dev/null +++ b/course_files @@ -0,0 +1,79 @@ +#!/usr/bin/env ruby + +require 'yaml' +require 'dry-struct' +require 'dry-types' +require 'active_support' +require 'active_support/core_ext/string' +require 'fileutils' + +module Types + include Dry.Types() +end + +class Chapter < Dry::Struct + attribute :name, Types::String + attribute :sections, Types::Array.of(Types::String) +end + +class Course < Dry::Struct + attribute :category, Types::String + attribute :name, Types::String + attribute :chapters, Types::Array.of(Chapter) +end + +def chapter_directory(course, chapter_num, chapter) + File.join(course.category.parameterize.underscore, course.name.parameterize.underscore, format('%02d', chapter_num + 1) + "_" + chapter.name.parameterize.underscore) +end + +def section_file(chapter_directory, section_num, section) + File.join(chapter_directory, format('%02d', section_num + 1) + "_" + section.parameterize.underscore) + ".md" +end + +def write_course_toc(file, course) + file.puts " - #{course.category}:" + file.puts " - #{course.name}:" + course.chapters.each_with_index do |chapter, chapter_num| + file.puts " - #{chapter.name}:" + chapter_directory = chapter_directory(course, chapter_num, chapter) + chapter.sections.each_with_index do |section, section_num| + section_file = section_file(chapter_directory, section_num, section) + file.puts " - #{section}: #{section_file}" + end + end +end + +def write_course_files(course) + course.chapters.each_with_index do |chapter, chapter_num| + chapter_directory = chapter_directory(course, chapter_num, chapter) + chapter.sections.each_with_index do |section, section_num| + section_file = File.join('docs', section_file(chapter_directory, section_num, section)) + FileUtils.mkdir_p(File.dirname(section_file)) + File.write(section_file, "# #{section}\n") + end + end +end + +def usage(error_message = nil) + STDERR.puts "ERROR: #{error_message}" if error_message + puts "USAGE: $0 FILE toc|files" + exit error_message ? 1 : 0 +end + +usage if ARGV == 0 +usage("Missing one or more arguments") if ARGV.size != 2 + +course_file = ARGV[0] +command = ARGV[1] + +usage("File does not exist: '${course_file}'") unless File.exist?(course_file) +usage("Invalid command: '${command}'") unless %w[toc files].include?(command) + +yaml_data = YAML.load_file('course.yml', symbolize_names: true) +course = Course.new(yaml_data) + +if ARGV[0] == "toc" + write_course_toc(STDOUT, course) +elsif ARGV[0] == "files" + write_course_files(course) +end diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/01_meet_your_instructor.md b/docs/aws/certified_cloud_practitioner/01_introduction/01_meet_your_instructor.md new file mode 100644 index 0000000..cb14cd3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/01_meet_your_instructor.md @@ -0,0 +1 @@ +# Meet Your Instructor diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/02_is_cpp_right_for_me.md b/docs/aws/certified_cloud_practitioner/01_introduction/02_is_cpp_right_for_me.md new file mode 100644 index 0000000..987297a --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/02_is_cpp_right_for_me.md @@ -0,0 +1,90 @@ +# AWS Certified Cloud Practitioner + +[ExamPro home page for the AWS Certified Cloud Practitioner course](https://www.exampro.co/clf-c02) + +* [What is this cert?](#what-is-this-cert) +* [Who is it for?](#who-is-it-for) +* [Why this cert?](#why-this-cert) +* [What is the value of this certification?](#what-is-the-value-of-this-certification) +* [How long to study to pass](#how-long-to-study-to-pass) +* [What does it take to pass the exam?](#what-does-it-take-to-pass-the-exam) +* [Exam Guide](#exam-guide) + +## What is this cert? + +AWS entry level cert + +* Cloud fundamentals (concepts, architecture, deployment models) +* In depth look at AWS Core services +* A quick look at the vast amount AWS services + +## Who is it for? + +* New to cloud and need to learn fundamentals +* You are executive, management, or sales level and need strategic info about cloud + +## Why this cert? + +* Provides the most expansive view possible of cloud and AWS +* Big picture thinking for changes, trends, and opportunities + +## What is the value of this certification? + +* It is not a difficult exam +* Not enough for a technical cloud role but helps +* Covers more content than found on exams + +Does not cover programming, technical diagramming, code management or other skills +needed for technical roles. + +## How long to study to pass + +* Beginner: Up to 30 hrs +* Experienced: As short as 6 hrs + +Average study time: 24 hours +* 50% lecture and labs +* 50% practice exams + +Recommended to study 1-2 hrs a day for 14 days + +## What does it take to pass the exam? + +1. Watch video lecture and memorize key information +2. Do hands-on labs and follow along within your own account +3. Do paid online practice exams that simulate the read exam + +## Exam Guide + +Content Outline: + +* 25% Domain 1: Cloud Concepts +* 30% Domain 2: Security and Compliance +* 34% Domain 3: Cloud Technology and Services +* 12% Domain 4: Billing, Pricing and Support + +Take the exam online or at an in-person test center + +* Online via Pearson Vue (online proctored exam system) +* In person at a Pearson Vue test center + +Scoring + +* There are 65 questions (50 scored and 15 unscored). +* A Passing grade is 700/1000 (around 70%) which means you can get 15 scored + questions wrong and still pass + +Questions are multiple choice and multiple answer. + +There is no penalty for wrong questions! + +There are 15 unscored quetions will not count toward your final score. However, +unscored questions are not identified. + +Exam time is 90 minutes. Seat time is 120 minutes (time you should allot for the exam +AND reviewing instructions, showing proctor your workspace, read and accept the NDS, +and provide feedback at the end) + +The exam is valid for 36 months... you will need recertification after that + +Recertification exam is half off diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/03_exam_guide_walkthrough.md b/docs/aws/certified_cloud_practitioner/01_introduction/03_exam_guide_walkthrough.md new file mode 100644 index 0000000..b7ff1d4 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/03_exam_guide_walkthrough.md @@ -0,0 +1,87 @@ +# Exam guide walkthrough + +The most important information for you so you have an idea of what we're trying to +study for. + +[AWS Certified Cloud Practitioner (CLF-C02) Exam +Guide](https://d1.awsstatic.com/training-and-certification/docs-cloud-practitioner/AWS-Certified-Cloud-Practitioner_Exam-Guide.pdf) + +* [Target candidate](#target-candidate) +* [Domains covered](#domains-covered) +* [What is covered](#what-is-covered) + +## Target candidate + +Ideal for candidates for non-IT backgrounds. + +Out of scope: coding, cloud architeture design, troubleshooting, implementation, load +and performance testing + +NO AWS cert will test your coding, diagramming, or performance testing skills. + +## Domains covered + +AWS certifications cover explain, understand, describe, and identify... aka more +conceptual understanding vs. hands on technical skills. + +AWS lists a lot of concepts that might be on the exam, but not all will show up. + +We have four domains here. + +* Cloud Concepts 28% +* Security 24% +* Technology 36% +* Billing and Pricing 12% + +From the class notes: + +The largest portion of the exam is Technology at 36% and Billing and Pricing is the +lowest which is funny because I find it to be the most valuable information in the +entire course. + +With Cloud Concepts we need to be able to define the AWS Cloud in its proposition, we +need to be able to identify aspects of AWS Cloud Economics and list the different +Cloud Architectural Principles. + +For Security you will learn a variety of AWS Security Services and shared +responsibility models. + +For Technology you will learn all core AWS Services and other AWS Services and Global +Infrastructures. + +Billing and Pricing is how we know how much things cost and how we can save money on +AWS, how to compare and contrast various pricing models for AWS, how to recognize the +various account structures in relation to ASW Billing and Pricing and how to Identify +Resources for Billing Support. + +When you do take this exam it has 65 questions and you have both multiple choice and +multiple response. For multiple choice you're going to choose one out of four, or +multiple response where you choose two or more out of five or more options but +generally it's two out of five or three out of six. + +I just want to highlight one more thing, which is the white papers. Any time you +study for an exam, AWS always has suggestion's to study these white papers first. At +the CCP level it's not so important because we definitely cover the content here. +When you study for harder exams however, especially the Professionals and +Specialties, you have to read the white papers, but again at this level, it's not so +important. + +## What is covered + +* **Cloud concepts** + * Value proposition of the AWS Cloud + * AWS well-architected framework + * Cloud adoption strategies + * Resources to support the cloud migration journey (such as the AWS Cloud Adoption + Framework) + * Aspects of cloud economics + * Cost savings of moving to the cloud +* **Security and compliance** + * AWS shared responsibility model + * AWS compliance and governance concepts + * Benefits of cloud security (e.g. encryption) + * Where to capture and locate logs associated with cloud security + * Identity and access management (e.g. AWS Identity and Access Management (IAM)) + * Importance of protecting the AWS root user account + * Principle of least privilege + * AWS IAM Identity Center (AWS Single Sign-On) diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/04_study_habits_guide.md b/docs/aws/certified_cloud_practitioner/01_introduction/04_study_habits_guide.md new file mode 100644 index 0000000..dd6b57e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/04_study_habits_guide.md @@ -0,0 +1,156 @@ +# Study Habits Guide + +This section copied directly from the course notes. + +This Study Habits Guide is the way we recommend how you should study for the AWS +Certified Cloud Practitioner. + +* [How You Should Study](#how-you-should-study) +* [Warning Signs You Are Going to Fail](#warning-signs-you-are-going-to-fail) + * [You took more than two weeks to complete your journey content](#you-took-more-than-two-weeks-to-complete-your-journey-content) + * [You did not do the Follow Alongs in your own Account](#you-did-not-do-the-follow-alongs-in-your-own-account) + * [You waited too long between your last practice exam and the actual exam](#you-waited-too-long-between-your-last-practice-exam-and-the-actual-exam) + * [You didn't use the practice exams system as intended](#you-didnt-use-the-practice-exams-system-as-intended) + * [Out of Order](#out-of-order) + * [You need to do mastery before you move to your next practice exam set](#you-need-to-do-mastery-before-you-move-to-your-next-practice-exam-set) + * [Not treating your first practice exam set attempt like an actual exam](#not-treating-your-first-practice-exam-set-attempt-like-an-actual-exam) + * [You didn't use the Spaced Repetition Learning Flashcard System](#you-didnt-use-the-spaced-repetition-learning-flashcard-system) + * [On your third practice exam set attempt, you didn't score between 80-90%](#on-your-third-practice-exam-set-attempt-you-didnt-score-between-80-90) +* [When you're not sure if you'll pass or not](#when-youre-not-sure-if-youll-pass-or-not) + +## How You Should Study + +* You should do the Journey in order from start to finish and complete it in 1-2 + weeks. +* You should do all the Follow Alongs in your AWS account. +* You should be studying your flashcards every single day you log in. +* You should be writing down notes with a pen on paper. +* You should do 3 practice exams after completing the Journey. +* You should be completing mastery on an exam before starting a new set +* You should do all your flashcards on the day of the exam. +* You should print out and review the Cheatsheets on the day of your exam. + +## Warning Signs You Are Going to Fail + +### You took more than two weeks to complete your journey content + +We have seen that people take multiple weeks to months to complete the journey +content, then fail the exam. The reason is that you need to keep the entire Journey +in your active memory and because they took so long to study, they forget most of +the lecture content. They had false confidence that they could remember everything +they learned when in reality, they forgot because they were not applying that +knowledge. + +You should complete your Journey in 1-2 weeks. That means you need to spend 1-2 +hours daily. + +### You did not do the Follow Alongs in your own Account + +We have noticed that when people get to the practice exams, they are overwhelmed at +how much more difficult the practice exams are compared to journey content, and +they score 10% lower on their first practice exam attempt. + +Doing the Follow Alongs will help you contextualize how the service works, and you +will indirectly absorb additional information that cannot be covered in our study +notes and videos. + +By doing the Follow Alongs, you will better commit both the practical and lecture +knowledge to your memory. Also, most importantly, you'll learn to gain confidence +with AWS. + +Keeping our video and step-by-step instructions up-to-date is challenging because +AWS constantly changes daily. You will get stuck during the Follow Alongs but +working through them is part of your Journey. + +The AWS console has hundreds of thousands of users, and sometimes the AWS Console +does not react the same, which can throw people off. So you will get stuck where +hundreds have gotten stuck prior, and you'll have to ask us a question, and maybe +you'll see that we have already answered how to debug your problem in great detail, +and that's the knowledge you a missing out on if you don't do the Follow Alongs. + +### You waited too long between your last practice exam and the actual exam + +We have seen people complete their Journey and score between 80-90% on their last +practice exam and are ready to take it, but they sit the exam 1-2 weeks from their +last practice exam. What ends up happening is they fail just shy of a few +percentages. So it's essential to close the gap between your last practice exam and +the actual exam. This is why I encourage people who score in the 70% range to book +their exam with the intent that they will get their scores up before they sit the +exam. + +Also, you should look at what date and times are available to book while you are +doing the practice exams so you can best guess when to take the exam as close as +your last practice exam. + +### You didn't use the practice exams system as intended + +This is where I see people sabotage their studies the most. + +#### Out of Order + +It would be best if you only looked at practice exams when you had completed your +Journey. There is a finite number of questions, and you are cheating your brain of +learning when you see them early, and then you see the correct answers. We try to +mitigate this by having 3 variations of each question, but we can only do so much +to mitigate this issue. So only start taking practice exams at the end of your +Journey. + +You need to take 3 practice exam sets to close together. + +For the CCP, you should take 3 practice exam sets in less than a week. A practice +exam set is 65 questions. So you should experience 195 unique questions. This +will help you pass, so you don't want to lose this information from your active +memory because you spaced them out too far. + +I have seen some people take their practice exams months apart and score within +the 80% range on their last exam, which gives them false confidence because they +can't remember the first two practice exam sets. + +#### You need to do mastery before you move to your next practice exam set + +Our system is designed so that you treat your first attempt on a practice exam +set like an actual exam. Then you proceed to mastery, where you must take the +same practice exam questions again, but only the ones you got wrong. Of course, +it would be best if you kept taking these mastery exams until you answered every +question correctly. + +If you move on to your next practice exam set or do your mastery later, you are +leaving points on the table, and you will score lower than expected on your exam. + +#### Not treating your first practice exam set attempt like an actual exam + +When you attempt a new set of questions, the first attempt is treated like an +actual exam. Unfortunately, some people only do a few questions and then +prematurely end the exam so they can see the answer. So they treat their first +attempt as if it were the mastery system. + +### You didn't use the Spaced Repetition Learning Flashcard System + +You are adding flashcards to a deck when you progress through the Journey. That +deck is powered by a learning algorithm called Spaced Repetition Learning. It's +designed to prompt you to study flashcards, forgetting them on the cusp of your +memory. This will allow you to remember factoid information long-term. The more +complex the certification, the harder it gets. + +If you open the Flashcards Console, you can see there are Study Boxes. Every time +you can remember correctly, the flashcard moves into the next study box, which is +the next time you will see that flashcard. When they reach the final box, you are +supposed to review those flashcards on the day of your exam. + +You have to use this system during your entire Journey, and it's the first thing +you should do before you start watching videos, following along, or doing a +practice exam. + +### On your third practice exam set attempt, you didn't score between 80-90% + +Generally, people will score 48% on the first attempt, 74% on the second attempt, +and the third attempt at 80%. If you don't score in this range, then there is +some deficit in your learning, and you need to reach out to an instructor. + +## When you're not sure if you'll pass or not + +An instructor who has a 1-on-1 conversation with a student can tell if you're +ready by challenging your knowledge by asking a series of questions and keep +digging to see how well you know the topics. There is no way to cheat an +instructor and could reveal misconceptions or weak points where you need to +supplement knowledge. diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/05_practice_exam_sample.md b/docs/aws/certified_cloud_practitioner/01_introduction/05_practice_exam_sample.md new file mode 100644 index 0000000..27c6ef6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/05_practice_exam_sample.md @@ -0,0 +1,7 @@ +# Practice example sample + +All questions are multi-answer, single-choice questions + +No coding or essay questions + +Questions are short diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/06_case_study_question_type.md b/docs/aws/certified_cloud_practitioner/01_introduction/06_case_study_question_type.md new file mode 100644 index 0000000..5024d62 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/06_case_study_question_type.md @@ -0,0 +1,9 @@ +# Case Study Question Type + +This is a question type that is included in the practice exam that isn't included in +the real exam. + +There is a short paragraph giving a case study followed by single- or multi- choice questions. + +A case study is like having a mini-exam within the exam. Once you exit the case study +you can not revisit the questions and answers. diff --git a/docs/aws/certified_cloud_practitioner/01_introduction/07_validators.md b/docs/aws/certified_cloud_practitioner/01_introduction/07_validators.md new file mode 100644 index 0000000..8238dc3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/01_introduction/07_validators.md @@ -0,0 +1,22 @@ +# Validators + +Validators are below the class content (e.g. the video ./ follow-along) which +automatically validates that you did the follow-along correctly. + +You have to give permission for this automation to access your account to do these +checks. + +Generally you have to provide your account id, region deployed to, and other +information. + +This generates a CloudFormation template that you will have to download and run via +CLI and run in the cloud shell via the AWS web interface. + +You can go to CloudFormation in the AWS web UI to see if the template ran +successfully. + +Be very aware that you are in the right region when finding your CloudFormation +results. + +Make sure to delete the CloudFormation stack after you run it to ensure that +the permissions you gave exampro are removed from your account. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/01_what_is_cloud_computing.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/01_what_is_cloud_computing.md new file mode 100644 index 0000000..d2f75ea --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/01_what_is_cloud_computing.md @@ -0,0 +1,22 @@ +# What is cloud computing? + +The practice of using a network of remote servers hosted on the Internet to store, +manage, and process data, rather than a local server or a personal computer. + +* [On-premises](#on-premises) +* [Cloud Providers](#cloud-providers) + +## On-premises + +* You own the servers +* You hire the IT people +* You pay or rent the real-estate +* You take all the risk. + +## Cloud Providers + +* Someone else owns the servers +* Someone else hires the IT people +* Someone else pays or rents the real-estate +* You are responsible for configuring your cloud services and code, someone else + takes care of the rest diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/02_evolution_of_cloud_hosting.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/02_evolution_of_cloud_hosting.md new file mode 100644 index 0000000..2aa35eb --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/02_evolution_of_cloud_hosting.md @@ -0,0 +1,29 @@ +# Evolution of cloud hosting + +## Dedicated Server​ + +One physical machine dedicated to single a business​ + +* Runs a single web-app/site.​ +* Very Expensive, High Maintenance, *High Security​ + +## Virtual Private Server​ + +The physical machine is virtualized into sub-machines + +* Runs multiple web-apps/sites​ +* Better Utilization and Isolation of Resources​ + +## Shared Hosting​ + +One physical machine, shared by hundred of businesses​ + +* Relies on most tenants under-utilizing their resources.​ +* Very Cheap, Limited functionality, Poor Isolation​ + +## Cloud Hosting​ + +Multiple physical machines that act as one system ​ + +* The system is abstracted into multiple cloud services​ +* Flexible, Scalable, Secure, Cost-Effective, High Configurability​ diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/03_what_is_amazon.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/03_what_is_amazon.md new file mode 100644 index 0000000..d330675 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/03_what_is_amazon.md @@ -0,0 +1,22 @@ +# What is Amazon? + +An American multinational e-commerce and technology company headquartered in Seattle, +Washington + +Amazon was founded in 1994 by Jeff Bezos and the company started as an online store +for books and expanded to other products. + +Amazon has expanded beyond just online e-commerce into: + +* cloud computing (Amazon Web Services) +* digital streaming + * Amazon Prime Video + * Amazon Prime Music + * Twitch.tv +* Grocery Stores (Whole Foods Market) +* Artificial Intelligence +* Low orbit satellites (Project Kuiper) +* And more! + +Andy Jassy is the current CEO of Amazon. Previously the CEO of AWS. So Jeff Bezos can +focus on space travel. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/04_what_is_aws.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/04_what_is_aws.md new file mode 100644 index 0000000..d6ebe24 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/04_what_is_aws.md @@ -0,0 +1,39 @@ +# What is Amazon Web Services (AWS)? + +Amazon is an American multinational computer technology corporation headquartered in +Seattle, Washington. + +* [What is AWS?](#what-is-aws) +* [Executive team](#executive-team) + +## What is AWS? + +Amazon was founded in 1994 by Jeff Bezos and the company started as an online store +for books and expanded to other products. + +Amazon many products include: + +* Amazon e-commerce +* cloud computing +* digital streaming +* artificial intelligence + +Amazon calls their cloud provider service ​Amazon Web Services​ (Commonly referred to +just AWS). + +AWS was launched in 2006 is the leading Cloud Service Provider in the world + +* Simple Queue Service (SQS) was the first AWS service launched for public use in + 2004. +* Simple Storage Service (S3) was launched in March of 2006. +* Elastic Compute Cloud (EC2) was launched in August of 2006. + +All of Amazon.com was moved to AWS in 2010. + +## Executive team + +* Adam Selipsky: CEO of AWS +* Werner Vogels: CTO of AWS "Everything fails, all the time" +* Jeff Barr: Chief Evangelist + +Note: Cloud Service Providers can be initialized as CSPs diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/05_what_is_a_cloud_service_provider.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/05_what_is_a_cloud_service_provider.md new file mode 100644 index 0000000..86aaa1f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/05_what_is_a_cloud_service_provider.md @@ -0,0 +1,34 @@ +# What is a Cloud Service Provider? + +A Cloud Service Provider - is a company which provides multiple Cloud Services, ​and +those Cloud Services can be chained together to create cloud architectures​ + +Most commonly through internet-hosted computing, storage, and software services. + +* [The big three service providers](#the-big-three-service-providers) +* [Services offered](#services-offered) + +## The big three service providers + +There are three main cloud service providers that own the market share. These +providers and their market share are: + +* Amazon Web Services (AWS) - 32.4% ($9.8B)​ +* Microsoft Azure - 7.6% ($5.3B) +* Google Cloud Platform - 6% ($1.8B) +* Common Cloud Services + +## Services offered + +* Compute​ - Imagine having a virtual computer that​ can run applications, programs, + and code. +* Networking​ - Imagine having a virtual network that allows you to define internet + connections or network isolations +* Storage​- Imagine having a virtual hard-drive that​ can store files +* Databases​ - Imagine a virtual database for storing and reporting data or a + database for general-purpose web-application + +Note: - AWS has over 200+ cloud services + +The term “Cloud Computing” can be used to refer to all categories, even though it has +“compute” in the name. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/06_landscape_of_csps.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/06_landscape_of_csps.md new file mode 100644 index 0000000..31a0b4a --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/06_landscape_of_csps.md @@ -0,0 +1,40 @@ +# Landscape of CSPs + +* [Tier 1 (Top Tier)](#tier-1-top-tier) +* [Tier 2 (Mid Tier)](#tier-2-mid-tier) +* [Tier 3 (Light Tier)](#tier-3-light-tier) +* [Tier 4 (Private Tier)](#tier-4-private-tier) + +## Tier 1 (Top Tier) + +Early to market, wide offering, strong synergies between services, well recognized in +the industry + +* Amazon Web Services (AWS) +* Microsoft Azure +* Google Cloud Platform (GCP) +* Alibaba Cloud (popular in the Asia region) + +## Tier 2 (Mid Tier) + +Backed by well-known tech companies, slow to innovate and turned to specialization. + +* IBM Cloud +* Oracle Cloud +* Rackspace (OpenStack) +* Huawei Cloud (popular in the Asia region) +* Tencent Cloud (popular in the Asia region) + +## Tier 3 (Light Tier) + +Virtual Private Servers (VPS) turned to offer core IaaS offering. Simple, +cost-effective + +* Vultr +* Digital Ocean +* Akamai Connected Cloud (formerly Linode) + +## Tier 4 (Private Tier) + +Infrastructure as Service software deployed to run in an organization's own private +data center. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud.md new file mode 100644 index 0000000..8f9f3fe --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud.md @@ -0,0 +1,12 @@ +# Gartner Magic Quadrant for Cloud + +**Magic Quadrant (MQ)** is a series of market research reports published by IT +consulting firm Gartner that rely on proprietary qualitative data analysis methods to +demonstrate market trends, such as direction, maturity and participants. + +![Gartner Magic Quadrent for Cloud]( + 07_gartner_magic_quadrant_for_cloud_01.png +){:style="height:800px; padding-left: 0pt; padding-right: 1pt"} + +You can see that AWS, Microsoft, and Google are leaders in Cloud Infrastructure and +Platform Services. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud_01.png b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud_01.png new file mode 100644 index 0000000..b9ae008 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud_01.png differ diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/08_common_cloud_services.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/08_common_cloud_services.md new file mode 100644 index 0000000..94550f5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/08_common_cloud_services.md @@ -0,0 +1,20 @@ +# Common Cloud Services + +A cloud provider can have hundreds of cloud services that are grouped into various +types of services. + +The four most common types of cloud services for Infrastructure as a Service (IaaS) +would be: + +* **Compute​** - Imagine having a virtual computer that​ can run applications, + programs, and code. +* **Networking​** - Imagine having a virtual network that allows you to define + internet connections or network isolations +* **Storage​**- Imagine having a virtual hard drive that​ can store files +* **Databases​** - Imagine a virtual database for storing and reporting data or a + database for general-purpose web-application + +Note: - AWS has over 200+ cloud services + +The term “Cloud Computing” can be used to refer to all categories, even though it has +“compute” in the name. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/09_aws_technology_overview.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/09_aws_technology_overview.md new file mode 100644 index 0000000..6b7c02e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/09_aws_technology_overview.md @@ -0,0 +1,50 @@ +# Technology Overview + +Cloud Service Providers (CSPs) that are Infrastructure as a Service (IaaS) will +always have 4 core cloud service offerings: + +* [Compute](#compute) +* [Storage](#storage) +* [Database](#database) +* [Networking and Content Delivery](#networking-and-content-delivery) +* [Others](#others) + +## Compute + +Example: EC2 Virtual Machines + +## Storage + +Example: EBS Virtual Hard drives + +## Database + +Example: RDS SQL databases + +## Networking and Content Delivery + +Example: VPC Private Cloud Network + +## Others + +* Analytics +* Application Integration +* AR & VR +* AWS Cost Management +* Blockchain +* Business Applications +* Containers +* Customer Engagement +* Developer Tools +* End-User Computing +* Game Tech +* Internet of Things +* Machine Learning +* Management & Governance +* Media Services +* Migration & Transfer +* Mobile +* Quantum Technologies +* Robotics +* Satellites +* Security, Identity & Compliance diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/10_aws_services_preview.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/10_aws_services_preview.md new file mode 100644 index 0000000..dafb454 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/10_aws_services_preview.md @@ -0,0 +1,6 @@ +# AWS Services Preview + +See [AWS Services Marketing Website](https://aws.amazon.com/) and select "Products" + +At the bottom of each product's marketing page is usually a link to technical product +documentation. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/11_evolution_of_computing.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/11_evolution_of_computing.md new file mode 100644 index 0000000..e972538 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/11_evolution_of_computing.md @@ -0,0 +1,55 @@ +# The Evolution of Computing​ + +* [Dedicated](#dedicated) +* [VMs](#vms) +* [Containers](#containers) +* [Functions](#functions) + +## Dedicated + +* A physical server **​wholly utilized by a single customer​**. +* You have to guess your capacity​ +* You’ll overpay for an underutilized server ​ +* You can’t vertical scale, you need a manual migration​ +* Replacing a server is very difficult​ +* You are limited by your Host Operating System​ +* Multiple apps can result in conflicts in resource sharing​ +* You have a **​guarantee of security, privacy, and full utility of underlying + resources​** (or rather: it is up to YOU to provide these things) + +## VMs + +(MOST COMMON) + +* You can run **​multiple Virtual Machines on one machine**.​​ +* **​Hypervisor​** is the software layer that lets you run the VMs​ +* A physical server shared by multiple customers​ +* You are to pay for a fraction of the server​ +* You’ll overpay for an underutilized Virtual Machine ​ +* You are limited by your Guest Operating System​ +* Multiple apps on a single Virtual Machine can result in conflicts in resource + sharing​ +* Easy to export or import images for migration​ +* Easy to Vertically or Horizontally scale​ + +## Containers + +* Virtual Machine running multiple containers​ +* **​Docker Daemon​** is the name of a software layer that lets you run multiple + containers.​ +* You can maximize the utilization of the available capacity which is more + cost-effective​ +* Your containers share the same underlying OS so containers are more efficient than + multiple VMs​ +* Multiple apps can run side by side without being limited to the same OS + requirements and will not cause conflicts during resource sharing​ + +## Functions + +* Functions are managed VMs running managed containers +* Known as **​Serverless Compute​​** +* You upload a piece of code, choose the amount of memory and duration. ​ +* Only responsible for code and data, nothing else​ +* Very cost-effective, only pay for the time code is running, VMs only run when there + is code to be executed​ +* Cold Starts (time it takes the VM to spin up) is a side-effect of this setup​ diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/12_types_of_cloud_computing.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/12_types_of_cloud_computing.md new file mode 100644 index 0000000..ba9ad06 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/12_types_of_cloud_computing.md @@ -0,0 +1,69 @@ +# Types of Cloud Computing + +* [Cloud Computing models](#cloud-computing-models) +* [SaaS: Software as a Service (Consume)](#saas-software-as-a-service-consume) +* [PaaS: Platform as a Service (Build)](#paas-platform-as-a-service-build) +* [IaaS: Infrastructure as a Service (Host)](#iaas-infrastructure-as-a-service-host) + +## Cloud Computing models + +There are three main models of Cloud Computing: + +1. SaaS - Software as a Service +2. PaaS- Platform as a Service +3. IaaS- Infrastructure as a Service + +## SaaS: Software as a Service (Consume) + +For Customers + +A product that is run and managed by the service provider. + +You don't worry about how the service is maintained. It just works and remains +available. + +Easy to use and comes complete with a user interface but has the least flexibility. + +Examples: + +* Gmail +* Adobe Creative Cloud + +## PaaS: Platform as a Service (Build) + +For Developers. + +Focus on the deployment and management of your apps. + +You don't worry about, provisioning, configuring or understanding the hardware or OS. + +Provides a platform allowing customers to develop, run, and manage applications +without the complexity of building and maintaining the infrastructure typically +associated with developing and launching an app. + +Less flexibility than IaaS because of pre-constructed packages. + +Examples: + +* AWS Elastic Beanstalk +* Windows Azure +* Heroku +* Google App Engine + +## IaaS: Infrastructure as a Service (Host) + +The basic building blocks for cloud IT. + +Provides Most basic building blocks of cloud IT infrastructure including networking +features, computers and data storage space. + +You don't worry about IT staff, data centers and hardware. + +It has the most flexibility and management control of all the different cloud +computing models. It is the closest to having a traditional on-premises data center. + +Examples: + +* Amazon Web Services Amazon EC2 +* Microsoft Azure Microsoft Azure Virtual Machines +* Google Cloud Google Compute Engine diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/13_cloud_computing_deployment_models.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/13_cloud_computing_deployment_models.md new file mode 100644 index 0000000..ad52338 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/13_cloud_computing_deployment_models.md @@ -0,0 +1,63 @@ +# Cloud Computing Deployment Models + +There are three different types of deployment models for Cloud Computing. + +* [Cloud](#cloud) + * [Cloud Deployment](#cloud-deployment) +* [Hybrid](#hybrid) + * [Hybrid Deployment](#hybrid-deployment) +* [On-Premises](#on-premises) + * [On-premises(Private cloud) Deployment](#on-premisesprivate-cloud-deployment) +* [Reference](#reference) +* [Multi-cloud](#multi-cloud) + +## Cloud + +When you think of Cloud, think of small startups. + +### Cloud Deployment + +100% of IT infrastructure is on the cloud. All of a companies applications were +migrated to or created on the cloud. Helps to remove roadblocks of costly and time +consuming procurement processes for on-premises infrastructure (big servers and data +centers!). Great for small businesses and start-ups. + +aka: Cloud-Native or Cloud First + +## Hybrid + +When you think of Hybrid, think of Fin Tech Companies + +### Hybrid Deployment + +Connects on-premises technology with cloud-based resources Great for established +companies that had a dedicated data center but also wants to migrate processes over +to the cloud Data is partially on the cloud, and partially in the on-premises Popular +in the Fin Tech space + +## On-Premises + +When you think of On-premises, think of large old companies or companies that are +beholden to Government Regulations. + +The private cloud could be OpenStack. + +### On-premises(Private cloud) Deployment + +Use virtualization to deploy resources in their on-premises data centers. Resembles +traditional IT infrastructure with big servers, data centers, etc. Do not get the +same benefits of cloud computing (ability to easily scale up and down on demand) +Company has dedicated resources that are not shared with others(good for security) +Resources cannot be accessed using the internet Typically older large companies or +owned by Government organizations + +## Reference + +[What are public, private, and hybrid +clouds?](https://docs.microsoft.com/en-us/learn/modules/fundamental-azure-concepts/types-of-cloud-computing) + +## Multi-cloud + +Using Multiple cloud providers + +For example, Using Azure Arc to deploy to both Amazon EKS and GCP Kubernetes Engine. diff --git a/docs/aws/certified_cloud_practitioner/02_cloud_concepts/14_deployment_model_use_cases.md b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/14_deployment_model_use_cases.md new file mode 100644 index 0000000..15eb6e3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/02_cloud_concepts/14_deployment_model_use_cases.md @@ -0,0 +1,37 @@ +# Deployment Model Use Cases + +## Cloud + +* Fully utilizing cloud computing +* Companies that are starting out today, or are small enought to make the leap from a + VPS to a CSP + * Startups + * SaaS offerings + * New projects and companies + * Examples + * Basecamp + * Dropbox + * Square space + +## Hybrid + +* Using both Cloud and On-Premises +* Orgs that started with their own datacenter, but can't fully moved to cloud due to + the effort of migration or security compliance +* Examples + * Banks + * FinTech, Inventment Management + * Large professional service providers + * Legacy on-premise + +## On-Premises + +* Deploying resources on-premises, using virtualization an resource management tools +* This is sometimes called "private cloud" +* Orgs that cannot run on cloud due to strict regulatory compliance or the sheet size + of their org + * Public Sector eg. government + * Super Sensitive data eg. Hospitals + * Large Enterprise with heavy regulation eg. Insurance companies +* Examples + * AIG, City, County, State, Federal Government, Hospitals diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/01_create_an_aws_account.md b/docs/aws/certified_cloud_practitioner/03_getting_started/01_create_an_aws_account.md new file mode 100644 index 0000000..d4356ac --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/01_create_an_aws_account.md @@ -0,0 +1,89 @@ +# Create an AWS Account + +Follow these step-by-step instructions to create your own AWS account. + +* [Step 1: Navigate to the AWS Website](#step-1-navigate-to-the-aws-website) +* [Step 2: Locate the "Create AWS Account" Button](#step-2-locate-the-create-aws-account-button) +* [Step 3: Enter Your Account Details](#step-3-enter-your-account-details) +* [Step 4: Add Billing Information](#step-4-add-billing-information) +* [Step 5: Verify Your Identity](#step-5-verify-your-identity) +* [Step 6: Choose an AWS Support Plan](#step-6-choose-an-aws-support-plan) +* [Step 7: Complete Account Creation](#step-7-complete-account-creation) +* [Next Steps](#next-steps) + +## Step 1: Navigate to the AWS Website + +* [X] Open a web browser of your choice. + +* [X] Type aws.amazon.com into the address bar and press Enter. + + Alternate Option: If you’re not confident about the URL, search for "AWS" in Google + and click on the link to the official AWS website (aws.amazon.com). + +## Step 2: Locate the "Create AWS Account" Button + +* [X] On the AWS homepage: Look for the big orange button in the top right corner + labeled "Sign in to the Console". + +* [X] If you're creating an account for the first time, you should see a button + labeled "Create an AWS Account": + + If this button doesn’t appear, click "Sign in to the Console", then find "Create a + new AWS account" at the bottom of the page. + +## Step 3: Enter Your Account Details + +* [X] Click "Create an AWS Account". + +* [X] Fill in the following details: + + * Email Address: Enter a valid email address (you'll need access to this email for + verification). + * Password: Create a strong password for your AWS account. + * AWS Account Name: Choose a unique name for your AWS account. + +## Step 4: Add Billing Information + +* [X] Provide a credit card or debit card for billing purposes: + + * AWS requires a valid payment method, even if you only plan to use free-tier + services + * If you don’t have a traditional credit card consider using a prepaid card or + virtual credit card + * Example: In Canada, services like Koho offer virtual Visa debit cards that are + compatible with AWS + +* [X] Ensure the card is loaded with sufficient funds if using a prepaid option. + +## Step 5: Verify Your Identity + +* [X] AWS will ask you to verify your identity through: + + * SMS verification: Provide a phone number and enter the code sent to your device. + * Email verification: Confirm your email by clicking the link in the verification + email AWS sends you. + +## Step 6: Choose an AWS Support Plan + +* [X] Select a support plan: + + Basic Support is free and sufficient for most users starting with AWS. + +* [X] Confirm your selection + +## Step 7: Complete Account Creation + +* [X] After entering all details and completing verification, AWS will create your + account. + +* [X] You can now log in to the AWS Management Console: + + * Go back to the AWS homepage and click "Sign in to the Console". + * Use the email and password you set up earlier. + +## Next Steps + +* Once logged in, you'll land on the AWS Management Console. +* Explore services and ensure you're aware of Free Tier Limits to avoid unexpected +charges. +* Congratulations! Your AWS account is ready for use. diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/02_create_iam_user.md b/docs/aws/certified_cloud_practitioner/03_getting_started/02_create_iam_user.md new file mode 100644 index 0000000..0a6fc2f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/02_create_iam_user.md @@ -0,0 +1,114 @@ +# Create IAM User + +## Step 1: Sign in to the AWS Management Console + +* [X] Log into the AWS Management Console using your root user credentials. + +* [X] Once logged in, you'll be on the AWS Management Console homepage. The most + recently used services are displayed here. + +## Step 2: Update Account Name (Optional) + +* [X] If you want to change your account name: + + * Click on your account name in the top right corner and select "My Account." + * In the "Account Settings" section, click "Edit" to change the account name. + +## Step 3: Log Out and Familiarize with AWS Login + +* [X] Log out of your root account to practice logging back in. + +* [X] Go to the login page, and you'll notice two options: "Root user" and "IAM + user." + + * When using the "Root user" option, you log in with your email address. + * When using the "IAM user" option, you log in with your account ID or alias. + +## Step 4: Set Up an IAM User + +* [X] Log back in to your root account. + +* [X] In the search bar, type "IAM" and select "IAM" from the services. + +* [X] On the IAM dashboard, you will see security recommendations + + One of the recommendations is to set up an alias for your account. You can set the + alias to make it easier to log in. + +* [X] In the left sidebar, select "Users." + +* [X] Click "Add users" to create a new IAM user. + +## Step 5: Provide User Details + +* [X] Enter a username for the new IAM user (e.g., "Andrew Brown"). + +* [X] Choose the access type: + + * Programmatic access: Allows access to AWS via API, CLI, or SDK. + * AWS Management Console access: Allows the user to log into the AWS Console. + * You can choose one or both options based on the requirements. + +* [X] If you select "AWS Management Console access," select the password option: + + * Auto-generate a password or Custom password. + * Ensure "Require password reset" is checked. + +## Step 6: Set Permissions + +* [X] Click "Next: Permissions." + +* [X] Choose how to assign permissions: + + * Add user to group: Click "Create group" and name it (e.g., "admin"). + * Select the "AdministratorAccess" policy to provide full access to AWS services. + +* [X] If you want more specific permissions, explore "AWS managed policies" to assign + roles like "PowerUserAccess." + +* [X] Click "Create group" and add the user to the new group. + +## Step 7: (Optional) Add Tags + +* [X] Click "Next: Tags." + +* [X] Optionally, add metadata to your user (e.g., department, role). + +## Step 8: Review and Create User + +* [X] Click "Next: Review" to see a summary of the user's details. + +* [X] Click "Create user." + +* [X] A page will display the new user's Access key ID and Secret access key. Copy + these credentials and store them securely. + +## Step 9: Set Up Account Alias + +* [X] To set up an account alias (useful for logging in): + + * In the IAM dashboard, under "Account settings," click "Create account alias." + * Enter an alias (e.g., "DeepSpaceNine"). + +## Step 10: Log In with the IAM User + +* [X] Log out of the root account. + +* [X] Go to the AWS login page and choose "IAM user." + +* [X] Enter your account alias or account ID. + +* [X] Enter the IAM username (e.g., "Andrew Brown") and the password. + +* [X] If prompted, reset the password using a strong, unique one. + +## Step 11: Verify Login + +* [X] Log out and log back in to ensure that the new IAM user account is set up + correctly. + +* [X] When logged in as the IAM user, the console displays the username and account + alias to distinguish it from the root account. + +For detailed information on IAM user creation, refer to the official AWS +documentation. diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/03_aws_region_selector.md b/docs/aws/certified_cloud_practitioner/03_getting_started/03_aws_region_selector.md new file mode 100644 index 0000000..672f67e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/03_aws_region_selector.md @@ -0,0 +1,64 @@ +# AWS Region Selector + +* [X] Locate the Region Selector in the AWS Management Console + + * Log in to your AWS account. + * In the top-right corner of the AWS Management Console, look for the region + selector. It is typically a dropdown menu displaying the current region (e.g., + "North Virginia"). + +* [X] Understand the Default Region + + The default region is often based on your geographical location. For example: + + * If you're in Canada, the console might default to Canada Central. + * In the U.S., it might default to regions like US East (Ohio) or US East (North + Virginia). + +* [X] Change the Region + + * Click on the region selector dropdown. + * Browse through the list of regions displayed. + * Select the region you prefer. For this lab, choose US East (North Virginia) + (us-east-1). This region: + * Is the original AWS region + * Provides the broadest access to AWS services + * Is required for certain AWS services like Billing and Cost Management + +* [X] Global Services + + Some AWS services are global, meaning they do not depend on a region selection. + These include: + + * CloudFront: Automatically defaults to "Global." + * S3 (Amazon Simple Storage Service): Also defaults to "Global." + + Navigate to these services to observe that the region selector displays "Global." + +* [X] Region-Specific Services + + * Other AWS services are region-dependent, meaning they require a specific region + for their resources. For example: + + * EC2 (Elastic Compute Cloud): Instances, volumes, and other resources are tied + to the selected region. + + * Navigate to EC2 to verify that it shows resources based on the current region. If + no resources appear, it might be because you are in the wrong region. + +* [X] Tips to Avoid Confusion + + * Always verify the selected region before creating or managing resources. + * If resources seem to be missing during a follow-along exercise, double-check the + region selector. + * Be cautious, as the region can sometimes switch unexpectedly. + +* [X] Best Practices + + * For all follow-along labs, use US East (North Virginia) (us-east-1), as it + ensures compatibility with most AWS services and simplifies the learning process. + * Note that while using US East (North Virginia) is recommended for labs, use a + region closer to your location for production environments to reduce latency and + comply with data residency requirements. + * By following these steps, you can effectively navigate and manage the AWS region + settings for your labs and projects. diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/04_overbilling_story.md b/docs/aws/certified_cloud_practitioner/03_getting_started/04_overbilling_story.md new file mode 100644 index 0000000..e4cbeae --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/04_overbilling_story.md @@ -0,0 +1,20 @@ +# Overbilling Story + +AWS has metered billing where billing based on numerous factors. + +Generally this means that you can get services at a lower cost. + +However, if you choose an expensive service or there is a mis-configuration, you +could end up with a large bill. + +Things that can run the cost up: + +* Choosing the wrong node type for a service +* Leaving a service running you meant to delete + +The instructor showed an example of setting up an ElastiCache Redis service. In this +case the default node was over provisioned for what was needed. This ended up costing +over $150 for the month. + +On your first mis-spend, Support Center can forgive the bill. Open a case with +Support Center with type = "Billing". diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets.md b/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets.md new file mode 100644 index 0000000..4bb6bba --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets.md @@ -0,0 +1,34 @@ +# AWS Budgets + +By default, IAM users and roles within an AWS account can’t access the Billing and +Budgets pages even if they have the AdministratorAccess policy attached. + +The AWS account root user can allow IAM users and roles access to Billing console +pages by using the Activate IAM Access setting. + +You will still need the AdministratorAccess policy attached, but you will need to do +the following using the Root user: + +* [X] Sign in to your Root account +* [X] Go to My Account +* [X] Scroll down, and you should see IAM User and Role Access to Billing + Information, choose Edit + + ![AWS Budgets]( + 05_aws_budgets_01.png + ) + +* [X] Select the Activate IAM Access checkbox to activate access to the Billing and + Cost Management console pages + + ![AWS Budgets 02]( + 05_aws_budgets_02.png + ) + +* [X] Choose Update +* [X] Log out of your Root account and log in to your IAM user account. + +You should be able to see the Billing information. + +Note: In the new UI, you may need to go into IAM to add the Billing permission policy +to the Admin user group. diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets_01.png b/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets_01.png new file mode 100644 index 0000000..24a61a0 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets_01.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets_02.png b/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets_02.png new file mode 100644 index 0000000..9dbe792 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets_02.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/06_aws_free_tier.md b/docs/aws/certified_cloud_practitioner/03_getting_started/06_aws_free_tier.md new file mode 100644 index 0000000..4e34fd5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/06_aws_free_tier.md @@ -0,0 +1,98 @@ +# AWS Free Tier + +The AWS Free Tier allows new AWS account holders to access certain services for free +for the first 12 months. This Free Tier provides the opportunity to experiment with +cloud services without incurring costs, which can be highly beneficial for learning. +However, it is essential to track your usage to ensure you stay within the Free Tier +limits. + +* [Objective](#objective) +* [Steps](#steps) + * [Step 1: Understanding the AWS Free Tier](#step-1-understanding-the-aws-free-tier) + * [Step 2: Set Up Free Tier Usage Alerts](#step-2-set-up-free-tier-usage-alerts) + * [Step 3: Enable Billing Alerts](#step-3-enable-billing-alerts) + * [Step 4: Monitor Free Tier Usage](#step-4-monitor-free-tier-usage) +* [Conclusion](#conclusion) + +## Objective + +* Learn how to utilize the AWS Free Tier for different services like EC2 and RDS. +* Set up alerts to track Free Tier usage and avoid unexpected costs. + +## Steps + +### Step 1: Understanding the AWS Free Tier + +* [X] Access AWS Free Tier Information + + * Open your browser and go to Google. + * Search for "AWS Free Tier." + * Click on the official AWS Free Tier page. + * Review the offerings available under the Free Tier, such as: + * 750 hours of EC2 usage (t2.micro or t3.micro instances running Linux, Red Hat, + etc.) + * Other services like RDS, S3, Lambda, etc. + * Be sure to read the fine print for each service as stipulations vary (e.g., some + services are only free for the first two months). + +### Step 2: Set Up Free Tier Usage Alerts + +* [X] Log into Your AWS Account: + + * Make sure you are logged into your AWS Management Console. + * Double-check the account you are working in (visible in the top-right corner of + the console). + +* [X] Navigate to the Billing Dashboard: + + * From the AWS Management Console, go to the Billing Dashboard by typing “Billing” + into the search bar or selecting it from the dropdown menu. + * On the Billing Dashboard, locate the "Preferences" tab in the left-hand menu. + +* [X] Enable Free Tier Usage Alerts: + + * Under Billing Preferences, check the box labeled Receive Free Tier Usage Alerts. + * Enter your email address to receive these alerts. + * This will notify you when your Free Tier service usage is approaching or has + exceeded the Free Tier limits. + +### Step 3: Enable Billing Alerts + +* [X] Enable Billing Alerts + + * While still in the Billing Preferences section, scroll down to find the Receive + Billing Alerts checkbox. + * Check this box to receive billing notifications. + * This feature allows you to set billing alerts and budgets through AWS Budgets in + the Billing Console. + +### Step 4: Monitor Free Tier Usage + +* [X] Review Free Tier Usage in the Billing Dashboard: + + * Go back to the Billing Dashboard. + * There isn’t a specific "Alerts" section within the Billing Dashboard, but you can + track your Free Tier usage under the Cost and Usage Reports or by setting up AWS + Budgets. + * AWS will send email notifications if your Free Tier usage approaches or exceeds + the Free Tier limits for services like EC2, S3, etc. + +* [X] Access Usage Alerts: + + * Free Tier usage alerts are sent via email, and you can set up additional budget + alerts to monitor your overall spending. + * The Billing Dashboard will display usage information, but alerts themselves are + not shown directly on the dashboard. + + Example: + + * You may see a notification such as “Your Free Tier usage limit is here and you + have exceeded it.” This alert will be clearly displayed on your billing dashboard + for the relevant service. + +## Conclusion + +By setting up these Free Tier usage alerts and billing notifications, you can +efficiently manage your usage of AWS services without incurring unexpected charges. +Be proactive in checking your usage regularly and adjusting resources as needed to +stay within the Free Tier limits. diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm.md b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm.md new file mode 100644 index 0000000..e64901a --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm.md @@ -0,0 +1,47 @@ +# Billing Alarm + +* [X] Go to the CloudWatch Management Console, on the left-hand pane, select Billing, +and click on the Create Alarm button + + ![Billing Alarm](07_billing_alarm_01.png) + +* [X] Specify metric and conditions, click on the Select metric button + + ![Billing Alarm](07_billing_alarm_02.png) + +* [X] Under AWS namespaces, select Billing + + ![Billing Alarm](07_billing_alarm_03.png) + +* [X] Select Total Estimated Charge + + ![Billing Alarm](07_billing_alarm_04.png) + +* [X] Select USD and click on the Select metric + + ![Billing Alarm](07_billing_alarm_05.png) + +* [X] Set the threshold value to 50 and click Next* + + ![Billing Alarm](07_billing_alarm_06.png) + +* [X] In Step 2: Configure actions, enter the following details, and click on Create + topic + + * Alarm state trigger: **In alarm** + * Send a notification to the following SNS topic: **Create a new topic** + * Create a new topic...: **MyBillingAlarm** + * Email endpoints that will receive the notification: `user1@example.com` + + ![Billing Alarm](07_billing_alarm_07.png) + +* [X] Click on View in SNS Console, and you should see a Pending confirmation. Go to + your email inbox and confirm the subscription. The status should update to + Confirmed in the SNS Console* + +* [X] In Step 3: Add name and description. Set the name to MySimpleBillingAlarm and + click Next. + + ![Billing Alarm](07_billing_alarm_08.png) + +* [X] In Step 4: Preview and create. Click on Create Alarm diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_01.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_01.png new file mode 100644 index 0000000..fd8f863 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_01.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_02.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_02.png new file mode 100644 index 0000000..ac67e0b Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_02.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_03.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_03.png new file mode 100644 index 0000000..8b25c01 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_03.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_04.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_04.png new file mode 100644 index 0000000..c397dca Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_04.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_05.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_05.png new file mode 100644 index 0000000..f2e5b1b Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_05.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_06.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_06.png new file mode 100644 index 0000000..04e2f49 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_06.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_07.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_07.png new file mode 100644 index 0000000..b9df386 Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_07.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_08.png b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_08.png new file mode 100644 index 0000000..494baeb Binary files /dev/null and b/docs/aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm_08.png differ diff --git a/docs/aws/certified_cloud_practitioner/03_getting_started/08_turning_on_mfa.md b/docs/aws/certified_cloud_practitioner/03_getting_started/08_turning_on_mfa.md new file mode 100644 index 0000000..05255bc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/03_getting_started/08_turning_on_mfa.md @@ -0,0 +1,111 @@ +# Turning on MFA for the AWS Root User Account + +* [Objective](#objective) +* [Steps](#steps) + * [Step 1: Log in as the Root User](#step-1-log-in-as-the-root-user) + * [Step 2: Navigate to MFA Settings](#step-2-navigate-to-mfa-settings) + * [Step 3: Choose MFA Device Type](#step-3-choose-mfa-device-type) + * [Step 4: Configure Virtual MFA (if chosen)](#step-4-configure-virtual-mfa-if-chosen) + * [Step 5: Verify MFA Setup](#step-5-verify-mfa-setup) + * [Step 6: Test the MFA](#step-6-test-the-mfa) + * [Optional: Use a Security Key for MFA](#optional-use-a-security-key-for-mfa) +* [Notes and Recommendations](#notes-and-recommendations) + +## Objective + +Enable Multi-Factor Authentication (MFA) for the AWS root user account to enhance +account security. + +## Steps + +### Step 1: Log in as the Root User + +* [X] Sign Out of your current IAM user account (if logged in). + +* [X] Go to the AWS Management Console login page. + +* [X] Select Root user at the login screen (if it doesn’t default to it). + +* [X] Enter the root user email address and click Next. + +* [X] Complete the CAPTCHA verification (if prompted). + +* [X] Enter your root user password and click Sign In. + +### Step 2: Navigate to MFA Settings + +* [X] Once logged in, go to the IAM Dashboard: + + * Use the search bar at the top of the AWS Console and type IAM. + * Select IAM from the search results. + +* [X] In the left-hand menu, click Dashboard. + +* [X] Look for the Security Recommendations section and find Root user MFA. + +* [X] Click Add MFA next to the root user recommendation. + +### Step 3: Choose MFA Device Type + +* [X] On the Manage MFA Device screen, select your preferred MFA device type: + + * Virtual MFA device (e.g., Authy, Google Authenticator, or Microsoft + Authenticator). + * U2F Security Key (e.g., YubiKey or hardware token). + * Other hardware MFA device (e.g., Gemalto token). + +* [X] Click Continue. + +### Step 4: Configure Virtual MFA (if chosen) + +* [X] Install a compatible authenticator app on your smartphone: + + * Recommended: Google Authenticator, Microsoft Authenticator, or Authy. + +* [X] In the app, tap Add Account or Scan QR Code. + +* [X] On the AWS Console, click Show QR Code. + +* [X] Use your phone’s camera within the app to scan the displayed QR code. + +* [X] Optionally, rename the account in the app for easy identification (e.g., AWS + Root User). + +### Step 5: Verify MFA Setup + +* [X] The authenticator app will generate a 6-digit code. Enter the first code into + the MFA Code 1 field in the AWS Console. + +* [X] Wait for the app to generate a new 6-digit code. Enter this second code into + the MFA Code 2 field. + +* [X] Click Assign MFA to complete the setup. + +### Step 6: Test the MFA + +* [X] Log out of your root user account. + +* [X] Attempt to log back in as the root user. + + * Enter your root email and password. + * When prompted, retrieve the 6-digit MFA code from your authenticator app. + * Enter the code and click Submit. + +* [X] Ensure you can successfully log in with MFA. + +### Optional: Use a Security Key for MFA + +1. If using a security key (e.g., YubiKey): + * Select U2F Security Key on the MFA setup screen. + * Insert your security key into a USB port. + * Tap the key when prompted. +2. Click Assign MFA to complete the setup. +3. Log out and test the security key for login. + +## Notes and Recommendations + +* Virtual MFA is free and works on any smartphone. +* Security keys offer a more convenient experience, especially for frequent logins, + as they require only a button press. +* Ensure you securely store your root user credentials and MFA device to prevent + account lockout. diff --git a/docs/aws/certified_cloud_practitioner/04_digital_transformation/01_innovation_waves.md b/docs/aws/certified_cloud_practitioner/04_digital_transformation/01_innovation_waves.md new file mode 100644 index 0000000..7252081 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/04_digital_transformation/01_innovation_waves.md @@ -0,0 +1,16 @@ +# Innovation Waves + +Kondratiev waves (also known as Innovation Waves) are hypothesized cycle-like +phenomena in the global world economy. ​ + +The phenomenon is closely connected with Technology life cycles.​ + +A common pattern of a wave change of supply and demand​ + +Each wave irreversibly changes society on a global scale.​ + +The latest wave is Cloud Technology​ + +## Reference + +[Kondratiev wave](https://en.wikipedia.org/wiki/Kondratiev_wave) diff --git a/docs/aws/certified_cloud_practitioner/04_digital_transformation/02_burning_platform.md b/docs/aws/certified_cloud_practitioner/04_digital_transformation/02_burning_platform.md new file mode 100644 index 0000000..ec54a9f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/04_digital_transformation/02_burning_platform.md @@ -0,0 +1,9 @@ +# Burning Platform + +Burning platform is a term used when a company abandons old technology for new +technology with the uncertainty of success and can be motivated by fear that the +organization future survival hinges on its digital transformation​ + +## Reference + +[Kondratiev wave](https://en.wikipedia.org/wiki/Kondratiev_wave) diff --git a/docs/aws/certified_cloud_practitioner/04_digital_transformation/03_digital_transformation_checklist.md b/docs/aws/certified_cloud_practitioner/04_digital_transformation/03_digital_transformation_checklist.md new file mode 100644 index 0000000..41269a2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/04_digital_transformation/03_digital_transformation_checklist.md @@ -0,0 +1,3 @@ +# Digital Transformation Checklist + +Link: [Public Sector Digital Transformation](https://aws.amazon.com/government-education/digital-transformation/?public-sector-resources-dt.sort-by=item.additionalFields.sortDate&public-sector-resources-dt.sort-order=desc) diff --git a/docs/aws/certified_cloud_practitioner/04_digital_transformation/04_evolution_of_computing_power.md b/docs/aws/certified_cloud_practitioner/04_digital_transformation/04_evolution_of_computing_power.md new file mode 100644 index 0000000..ecebe25 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/04_digital_transformation/04_evolution_of_computing_power.md @@ -0,0 +1,46 @@ +# Evolution of Computing Power + +We are not done with the evolution of computing. + +* [What is Computing Power?​](#what-is-computing-power) + * [General Computing​](#general-computing) + * [Tensor Computing​](#tensor-computing) + * [Quantum Computing​](#quantum-computing) +* [Google’s Cloud Service Offering​](#googles-cloud-service-offering) +* [Reference](#reference) + +## What is Computing Power?​ + +The throughput is measured at which a computer can complete a computational task.​ + +### General Computing​ + +Xeon CPU Processor​ + +### Tensor Computing​ + +aka GPU computing + +Tensor Processing Unit 3.0 (TPUs)​ + +50x faster than traditional CPUs​ + +### Quantum Computing​ + +* Google Foxtail (2016)​ +* Google Bristlecone (2017)​ +* Google Sycamore (2018)​ + +100 Million times faster​ + +## Google’s Cloud Service Offering​ + +* Compute Engine​ +* Cloud TPU​ +* Google Quantum AI​ + +## Reference + +[Tensor Processing Unit](https://en.wikipedia.org/wiki/Tensor_Processing_Unit) + +[A Preview of Bristlecone, Google’s New Quantum Processor](https://ai.googleblog.com/2018/03/a-preview-of-bristlecone-googles-new.html) diff --git a/docs/aws/certified_cloud_practitioner/04_digital_transformation/05_amazon_braket.md b/docs/aws/certified_cloud_practitioner/04_digital_transformation/05_amazon_braket.md new file mode 100644 index 0000000..21f9a26 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/04_digital_transformation/05_amazon_braket.md @@ -0,0 +1,47 @@ +# Amazon Braket + +Amazon Braket is a fully managed quantum computing service on Amazon Web Services +(AWS) that helps researchers, scientists, and developers get started with quantum +computing. + +* [Simplifies getting started](#simplifies-getting-started) +* [Provides access to a variety of quantum computing technologies](#provides-access-to-a-variety-of-quantum-computing-technologies) +* [Provides tools for programming, execution, visualization, and cloud integration](#provides-tools-for-programming-execution-visualization-and-cloud-integration) +* [Offers a Digital Learning Plan](#offers-a-digital-learning-plan) +* [Has no upfront charges](#has-no-upfront-charges) +* [Features](#features) + +## Simplifies getting started + +Amazon Braket manages the quantum infrastructure, so users can focus on building +quantum skills and testing quantum applications. + +## Provides access to a variety of quantum computing technologies + +Amazon Braket offers access to different types of quantum computers, quantum circuit +simulators, and classical simulators. + +## Provides tools for programming, execution, visualization, and cloud integration + +Amazon Braket offers cross-platform developer tools, including the Amazon Braket SDK, +which allows users to design and execute quantum algorithms. + +## Offers a Digital Learning Plan + +Users can enroll in the Amazon Braket Digital Learning Plan to learn the foundations +of quantum computing. + +## Has no upfront charges + +Users only pay for the AWS resources they use. + +## Features + +Some features of Amazon Braket include: + +* On-demand and dedicated access to quantum computers +* Fully managed execution of hybrid quantum-classical algorithms +* Jupyter notebook development environments +* Priority access to quantum computers +* The ability to reserve dedicated device access +* Simple pricing and management controls diff --git a/docs/aws/certified_cloud_practitioner/05_the_benefits_of_cloud/01_the_benefits_of_the_cloud.md b/docs/aws/certified_cloud_practitioner/05_the_benefits_of_cloud/01_the_benefits_of_the_cloud.md new file mode 100644 index 0000000..60eeef4 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/05_the_benefits_of_cloud/01_the_benefits_of_the_cloud.md @@ -0,0 +1,26 @@ +# The Benefits of the Cloud + +The benefits of the cloud are a summary of reasons why an organization would consider +adopting or migrating to utilizing the public cloud. + +# fix this markdown table ... the headers are wrong + +| *Benefit* | *Description* | +| Agility | Increase speed and agility | +| Pay-as-you-go pricing | Trade capital expense for variable expense | +| Economy of scale | Benefit from massive economies of scale | +| Global Reach | Go global in minutes | +| Security | ??? | +| Reliability | Stop spending money on running and maintaining data centers | +| High Availability | ??? | +| Scalability | Stop guessing capacity | +| Elasticity | ??? | + +## Cloud Architecture + +Missing: + +* Fault Tolerance +* Disaster Recovery + +The Benefits of Cloud is reworking and expansion of the Seven Advantages of Cloud. diff --git a/docs/aws/certified_cloud_practitioner/05_the_benefits_of_cloud/02_the_seven_advantages_of_cloud.md b/docs/aws/certified_cloud_practitioner/05_the_benefits_of_cloud/02_the_seven_advantages_of_cloud.md new file mode 100644 index 0000000..72827f3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/05_the_benefits_of_cloud/02_the_seven_advantages_of_cloud.md @@ -0,0 +1,40 @@ +# The Seven Advantages of Cloud + +* [Cost-effective​](#cost-effective) +* [Global](#global) +* [Secure​](#secure) +* [Reliable​](#reliable) +* [Scalable​](#scalable) +* [Elastic​](#elastic) +* [Current​](#current) + +## Cost-effective​ + +You pay for what you consume, with no up-front cost. On-demand pricing or +Pay-as-you-go (PAYG) with thousands of customers sharing the cost of the resources​. + +## Global + +Launch workloads anywhere in the world, just choose a region​. + +## Secure​ + +Cloud provider takes care of physical security. Cloud services can be secure by +default or you have the ability to configure access down to a granular level.​ + +## Reliable​ + +Data backup, disaster recovery, data replication, and fault tolerance​ + +## Scalable​ + +Increase or decrease resources and services based on demand ​ + +## Elastic​ + +Automate scaling during spikes and drop in demand​ + +## Current​ + +The underlying hardware and managed software are patched, upgraded, and replaced by +the cloud provider without interruption to you.​ diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/01_aws_global_infrastructure_overview.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/01_aws_global_infrastructure_overview.md new file mode 100644 index 0000000..7237fee --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/01_aws_global_infrastructure_overview.md @@ -0,0 +1 @@ +# AWS Global Infrastructure Overview diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/02_aws_global_infrastructure_follow_along.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/02_aws_global_infrastructure_follow_along.md new file mode 100644 index 0000000..688c497 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/02_aws_global_infrastructure_follow_along.md @@ -0,0 +1 @@ +# AWS Global Infrastructure Follow Along diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/03_regions.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/03_regions.md new file mode 100644 index 0000000..b6c2877 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/03_regions.md @@ -0,0 +1 @@ +# Regions diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/04_regional_vs_global_services.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/04_regional_vs_global_services.md new file mode 100644 index 0000000..6995aa4 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/04_regional_vs_global_services.md @@ -0,0 +1 @@ +# Regional vs Global Services diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/05_availability_zones_azs.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/05_availability_zones_azs.md new file mode 100644 index 0000000..1bf1a2f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/05_availability_zones_azs.md @@ -0,0 +1 @@ +# Availability Zones (AZs) diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/06_regions_and_az_visualized.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/06_regions_and_az_visualized.md new file mode 100644 index 0000000..57eea50 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/06_regions_and_az_visualized.md @@ -0,0 +1 @@ +# Regions and AZ Visualized diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/07_selecting_regions_and_azs_follow_along.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/07_selecting_regions_and_azs_follow_along.md new file mode 100644 index 0000000..3fee78f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/07_selecting_regions_and_azs_follow_along.md @@ -0,0 +1 @@ +# Selecting Regions and Azs Follow Along diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/08_fault_tolerance.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/08_fault_tolerance.md new file mode 100644 index 0000000..3eeefff --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/08_fault_tolerance.md @@ -0,0 +1 @@ +# Fault Tolerance diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/09_aws_global_network.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/09_aws_global_network.md new file mode 100644 index 0000000..683bef9 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/09_aws_global_network.md @@ -0,0 +1 @@ +# AWS Global Network diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/10_points_of_presence_pop.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/10_points_of_presence_pop.md new file mode 100644 index 0000000..5d20af9 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/10_points_of_presence_pop.md @@ -0,0 +1 @@ +# Points of Presence (PoP) diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/11_tier_1.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/11_tier_1.md new file mode 100644 index 0000000..6e02fcd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/11_tier_1.md @@ -0,0 +1 @@ +# Tier 1 diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/12_aws_services_using_pops.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/12_aws_services_using_pops.md new file mode 100644 index 0000000..9d19cbd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/12_aws_services_using_pops.md @@ -0,0 +1 @@ +# AWS Services using PoPs diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/13_aws_direct_connect.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/13_aws_direct_connect.md new file mode 100644 index 0000000..1539d48 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/13_aws_direct_connect.md @@ -0,0 +1 @@ +# AWS Direct Connect diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/14_direct_connect_locations.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/14_direct_connect_locations.md new file mode 100644 index 0000000..4eea4fc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/14_direct_connect_locations.md @@ -0,0 +1 @@ +# Direct Connect Locations diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/15_aws_local_zones.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/15_aws_local_zones.md new file mode 100644 index 0000000..6a9f1aa --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/15_aws_local_zones.md @@ -0,0 +1 @@ +# AWS Local Zones diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/16_wavelength_zones.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/16_wavelength_zones.md new file mode 100644 index 0000000..760a4d5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/16_wavelength_zones.md @@ -0,0 +1 @@ +# Wavelength Zones diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/17_data_residency.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/17_data_residency.md new file mode 100644 index 0000000..2f7a408 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/17_data_residency.md @@ -0,0 +1 @@ +# Data Residency diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/18_aws_for_government.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/18_aws_for_government.md new file mode 100644 index 0000000..dc88152 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/18_aws_for_government.md @@ -0,0 +1 @@ +# AWS for Government diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/19_govcloud.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/19_govcloud.md new file mode 100644 index 0000000..d22782e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/19_govcloud.md @@ -0,0 +1 @@ +# GovCloud diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/20_aws_in_china.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/20_aws_in_china.md new file mode 100644 index 0000000..27fde19 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/20_aws_in_china.md @@ -0,0 +1 @@ +# AWS in China diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/21_aws_in_china_follow_along.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/21_aws_in_china_follow_along.md new file mode 100644 index 0000000..af07ac7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/21_aws_in_china_follow_along.md @@ -0,0 +1 @@ +# AWS in China Follow Along diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/22_sustainability.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/22_sustainability.md new file mode 100644 index 0000000..8d3be25 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/22_sustainability.md @@ -0,0 +1 @@ +# Sustainability diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/23_sustainability_follow_along.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/23_sustainability_follow_along.md new file mode 100644 index 0000000..70e04c0 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/23_sustainability_follow_along.md @@ -0,0 +1 @@ +# Sustainability Follow Along diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/24_aws_ground_station.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/24_aws_ground_station.md new file mode 100644 index 0000000..abe4e94 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/24_aws_ground_station.md @@ -0,0 +1 @@ +# AWS Ground Station diff --git a/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/25_aws_outposts.md b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/25_aws_outposts.md new file mode 100644 index 0000000..fa1f66d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/06_aws_global_infrastructure/25_aws_outposts.md @@ -0,0 +1 @@ +# AWS Outposts diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/01_cloud_architecture_terminologies.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/01_cloud_architecture_terminologies.md new file mode 100644 index 0000000..e5ca2cf --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/01_cloud_architecture_terminologies.md @@ -0,0 +1 @@ +# Cloud Architecture Terminologies diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/02_high_availability.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/02_high_availability.md new file mode 100644 index 0000000..7913812 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/02_high_availability.md @@ -0,0 +1 @@ +# High Availability diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/03_high_scalability.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/03_high_scalability.md new file mode 100644 index 0000000..e36a87f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/03_high_scalability.md @@ -0,0 +1 @@ +# High Scalability diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/04_high_elasticity.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/04_high_elasticity.md new file mode 100644 index 0000000..adf8dd7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/04_high_elasticity.md @@ -0,0 +1 @@ +# High Elasticity diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/05_fault_tolerance.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/05_fault_tolerance.md new file mode 100644 index 0000000..3eeefff --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/05_fault_tolerance.md @@ -0,0 +1 @@ +# Fault Tolerance diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/06_high_durability.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/06_high_durability.md new file mode 100644 index 0000000..a180c48 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/06_high_durability.md @@ -0,0 +1 @@ +# High Durability diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/07_business_continuity_plan.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/07_business_continuity_plan.md new file mode 100644 index 0000000..83fa1c3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/07_business_continuity_plan.md @@ -0,0 +1 @@ +# Business Continuity Plan diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/08_disaster_recovery_options.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/08_disaster_recovery_options.md new file mode 100644 index 0000000..1284773 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/08_disaster_recovery_options.md @@ -0,0 +1 @@ +# Disaster Recovery Options diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/09_rto_visualized.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/09_rto_visualized.md new file mode 100644 index 0000000..265d736 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/09_rto_visualized.md @@ -0,0 +1 @@ +# RTO Visualized diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/10_rpo_visualized.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/10_rpo_visualized.md new file mode 100644 index 0000000..4d38679 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/10_rpo_visualized.md @@ -0,0 +1 @@ +# RPO Visualized diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/11_architectural_diagram_example.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/11_architectural_diagram_example.md new file mode 100644 index 0000000..62ace7d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/11_architectural_diagram_example.md @@ -0,0 +1 @@ +# Architectural diagram example diff --git a/docs/aws/certified_cloud_practitioner/07_cloud_architecture/12_ha_follow_along.md b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/12_ha_follow_along.md new file mode 100644 index 0000000..f1fadbc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/07_cloud_architecture/12_ha_follow_along.md @@ -0,0 +1 @@ +# HA Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/01_aws_api.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/01_aws_api.md new file mode 100644 index 0000000..ba750a2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/01_aws_api.md @@ -0,0 +1 @@ +# AWS API diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/02_aws_api_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/02_aws_api_follow_along.md new file mode 100644 index 0000000..1783a96 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/02_aws_api_follow_along.md @@ -0,0 +1 @@ +# AWS API Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/03_aws_management_console.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/03_aws_management_console.md new file mode 100644 index 0000000..b36d436 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/03_aws_management_console.md @@ -0,0 +1 @@ +# AWS Management Console diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/04_aws_management_console_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/04_aws_management_console_follow_along.md new file mode 100644 index 0000000..08fa07c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/04_aws_management_console_follow_along.md @@ -0,0 +1 @@ +# AWS Management Console Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/05_service_console.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/05_service_console.md new file mode 100644 index 0000000..96a6b68 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/05_service_console.md @@ -0,0 +1 @@ +# Service Console diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/06_service_console_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/06_service_console_follow_along.md new file mode 100644 index 0000000..affad80 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/06_service_console_follow_along.md @@ -0,0 +1 @@ +# Service Console Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/07_aws_account_id.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/07_aws_account_id.md new file mode 100644 index 0000000..36b717e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/07_aws_account_id.md @@ -0,0 +1 @@ +# AWS Account ID diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/08_aws_account_id_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/08_aws_account_id_follow_along.md new file mode 100644 index 0000000..556c930 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/08_aws_account_id_follow_along.md @@ -0,0 +1 @@ +# AWS Account ID Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/09_aws_tools_for_powershell.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/09_aws_tools_for_powershell.md new file mode 100644 index 0000000..b081605 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/09_aws_tools_for_powershell.md @@ -0,0 +1 @@ +# AWS Tools for PowerShell diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/10_aws_tools_for_powershell_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/10_aws_tools_for_powershell_follow_along.md new file mode 100644 index 0000000..5c1631f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/10_aws_tools_for_powershell_follow_along.md @@ -0,0 +1 @@ +# AWS Tools for Powershell Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/11_amazon_resource_names.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/11_amazon_resource_names.md new file mode 100644 index 0000000..28a38c5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/11_amazon_resource_names.md @@ -0,0 +1 @@ +# Amazon Resource Names diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/12_arn_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/12_arn_follow_along.md new file mode 100644 index 0000000..c4ad4ff --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/12_arn_follow_along.md @@ -0,0 +1 @@ +# ARN Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/13_aws_cli.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/13_aws_cli.md new file mode 100644 index 0000000..df55b12 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/13_aws_cli.md @@ -0,0 +1 @@ +# AWS CLI diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/14_aws_cli_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/14_aws_cli_follow_along.md new file mode 100644 index 0000000..2c4a68c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/14_aws_cli_follow_along.md @@ -0,0 +1 @@ +# AWS CLI Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/15_aws_sdk.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/15_aws_sdk.md new file mode 100644 index 0000000..7910263 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/15_aws_sdk.md @@ -0,0 +1 @@ +# AWS SDK diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/16_aws_sdk_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/16_aws_sdk_follow_along.md new file mode 100644 index 0000000..54e74d9 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/16_aws_sdk_follow_along.md @@ -0,0 +1 @@ +# AWS SDK Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/17_aws_cloudshell.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/17_aws_cloudshell.md new file mode 100644 index 0000000..adcc853 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/17_aws_cloudshell.md @@ -0,0 +1 @@ +# AWS CloudShell diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/18_infrastructure_as_code.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/18_infrastructure_as_code.md new file mode 100644 index 0000000..4f6dde7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/18_infrastructure_as_code.md @@ -0,0 +1 @@ +# Infrastructure as Code diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/19_cloudformation.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/19_cloudformation.md new file mode 100644 index 0000000..fefbbcc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/19_cloudformation.md @@ -0,0 +1 @@ +# CloudFormation diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/20_cloudformation_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/20_cloudformation_follow_along.md new file mode 100644 index 0000000..b0d4dee --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/20_cloudformation_follow_along.md @@ -0,0 +1 @@ +# CloudFormation Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/21_cdk.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/21_cdk.md new file mode 100644 index 0000000..5f57eb2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/21_cdk.md @@ -0,0 +1 @@ +# CDK diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/22_aws_toolkit_for_vscode.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/22_aws_toolkit_for_vscode.md new file mode 100644 index 0000000..ae63bb3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/22_aws_toolkit_for_vscode.md @@ -0,0 +1 @@ +# AWS Toolkit for VSCode diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/23_access_keys.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/23_access_keys.md new file mode 100644 index 0000000..83b2c52 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/23_access_keys.md @@ -0,0 +1 @@ +# Access Keys diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/24_access_keys_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/24_access_keys_follow_along.md new file mode 100644 index 0000000..54a0d96 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/24_access_keys_follow_along.md @@ -0,0 +1 @@ +# Access Keys Follow Along diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/25_aws_documentation.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/25_aws_documentation.md new file mode 100644 index 0000000..fd1de20 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/25_aws_documentation.md @@ -0,0 +1 @@ +# AWS Documentation diff --git a/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/26_aws_documentation_follow_along.md b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/26_aws_documentation_follow_along.md new file mode 100644 index 0000000..db87b87 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/08_management_and_development_tools/26_aws_documentation_follow_along.md @@ -0,0 +1 @@ +# AWS Documentation Follow Along diff --git a/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/01_introduction_to_shared_responsibility_model.md b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/01_introduction_to_shared_responsibility_model.md new file mode 100644 index 0000000..7990da6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/01_introduction_to_shared_responsibility_model.md @@ -0,0 +1 @@ +# Introduction to Shared Responsibility Model diff --git a/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/02_aws_shared_responsibility_model.md b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/02_aws_shared_responsibility_model.md new file mode 100644 index 0000000..ad6f62b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/02_aws_shared_responsibility_model.md @@ -0,0 +1 @@ +# AWS Shared Responsibility Model diff --git a/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/03_types_of_cloud_responsibilities.md b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/03_types_of_cloud_responsibilities.md new file mode 100644 index 0000000..f712a02 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/03_types_of_cloud_responsibilities.md @@ -0,0 +1 @@ +# Types of Cloud Responsibilities diff --git a/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/04_shared_responsibility_for_compute.md b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/04_shared_responsibility_for_compute.md new file mode 100644 index 0000000..7279443 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/04_shared_responsibility_for_compute.md @@ -0,0 +1 @@ +# Shared Responsibility for Compute diff --git a/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/05_shared_responsibility_model_alternate.md b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/05_shared_responsibility_model_alternate.md new file mode 100644 index 0000000..b5bf9b6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/05_shared_responsibility_model_alternate.md @@ -0,0 +1 @@ +# Shared Responsibility Model Alternate diff --git a/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/06_shared_responsibility_model_architecture.md b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/06_shared_responsibility_model_architecture.md new file mode 100644 index 0000000..8e74dfd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/09_shared_responsibility_model/06_shared_responsibility_model_architecture.md @@ -0,0 +1 @@ +# Shared Responsibility Model Architecture diff --git a/docs/aws/certified_cloud_practitioner/10_compute/01_ec2_overview.md b/docs/aws/certified_cloud_practitioner/10_compute/01_ec2_overview.md new file mode 100644 index 0000000..fb6627c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/01_ec2_overview.md @@ -0,0 +1 @@ +# EC2 Overview diff --git a/docs/aws/certified_cloud_practitioner/10_compute/02_vms_containers_and_serverless.md b/docs/aws/certified_cloud_practitioner/10_compute/02_vms_containers_and_serverless.md new file mode 100644 index 0000000..af8bd34 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/02_vms_containers_and_serverless.md @@ -0,0 +1 @@ +# VMs, Containers and Serverless diff --git a/docs/aws/certified_cloud_practitioner/10_compute/03_compute_follow_along.md b/docs/aws/certified_cloud_practitioner/10_compute/03_compute_follow_along.md new file mode 100644 index 0000000..a7f3b63 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/03_compute_follow_along.md @@ -0,0 +1 @@ +# Compute Follow Along diff --git a/docs/aws/certified_cloud_practitioner/10_compute/04_high_performance_computing_hpc.md b/docs/aws/certified_cloud_practitioner/10_compute/04_high_performance_computing_hpc.md new file mode 100644 index 0000000..1487c56 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/04_high_performance_computing_hpc.md @@ -0,0 +1 @@ +# High Performance Computing (HPC) diff --git a/docs/aws/certified_cloud_practitioner/10_compute/05_hpc_follow_along.md b/docs/aws/certified_cloud_practitioner/10_compute/05_hpc_follow_along.md new file mode 100644 index 0000000..4fc5f72 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/05_hpc_follow_along.md @@ -0,0 +1 @@ +# HPC Follow Along diff --git a/docs/aws/certified_cloud_practitioner/10_compute/06_edge_and_hybrid.md b/docs/aws/certified_cloud_practitioner/10_compute/06_edge_and_hybrid.md new file mode 100644 index 0000000..abe7165 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/06_edge_and_hybrid.md @@ -0,0 +1 @@ +# Edge and Hybrid diff --git a/docs/aws/certified_cloud_practitioner/10_compute/07_edge_computing_follow_along.md b/docs/aws/certified_cloud_practitioner/10_compute/07_edge_computing_follow_along.md new file mode 100644 index 0000000..2567c91 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/07_edge_computing_follow_along.md @@ -0,0 +1 @@ +# Edge Computing Follow Along diff --git a/docs/aws/certified_cloud_practitioner/10_compute/08_cost_capacity_management.md b/docs/aws/certified_cloud_practitioner/10_compute/08_cost_capacity_management.md new file mode 100644 index 0000000..ae4fd13 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/10_compute/08_cost_capacity_management.md @@ -0,0 +1 @@ +# Cost & Capacity Management diff --git a/docs/aws/certified_cloud_practitioner/11_storage/01_types_of_storage_services.md b/docs/aws/certified_cloud_practitioner/11_storage/01_types_of_storage_services.md new file mode 100644 index 0000000..19d8bbf --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/01_types_of_storage_services.md @@ -0,0 +1 @@ +# Types of Storage Services diff --git a/docs/aws/certified_cloud_practitioner/11_storage/02_introduction_to_s3.md b/docs/aws/certified_cloud_practitioner/11_storage/02_introduction_to_s3.md new file mode 100644 index 0000000..b5219ee --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/02_introduction_to_s3.md @@ -0,0 +1 @@ +# Introduction to S3 diff --git a/docs/aws/certified_cloud_practitioner/11_storage/03_s3_storage_classes.md b/docs/aws/certified_cloud_practitioner/11_storage/03_s3_storage_classes.md new file mode 100644 index 0000000..4de0f70 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/03_s3_storage_classes.md @@ -0,0 +1 @@ +# S3 Storage Classes diff --git a/docs/aws/certified_cloud_practitioner/11_storage/04_aws_snow_family.md b/docs/aws/certified_cloud_practitioner/11_storage/04_aws_snow_family.md new file mode 100644 index 0000000..8f88f1d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/04_aws_snow_family.md @@ -0,0 +1 @@ +# AWS Snow Family diff --git a/docs/aws/certified_cloud_practitioner/11_storage/05_storage_services.md b/docs/aws/certified_cloud_practitioner/11_storage/05_storage_services.md new file mode 100644 index 0000000..280d809 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/05_storage_services.md @@ -0,0 +1 @@ +# Storage Services diff --git a/docs/aws/certified_cloud_practitioner/11_storage/06_s3_follow_along.md b/docs/aws/certified_cloud_practitioner/11_storage/06_s3_follow_along.md new file mode 100644 index 0000000..3b9fa84 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/06_s3_follow_along.md @@ -0,0 +1 @@ +# S3 Follow Along diff --git a/docs/aws/certified_cloud_practitioner/11_storage/07_ebs_follow_along.md b/docs/aws/certified_cloud_practitioner/11_storage/07_ebs_follow_along.md new file mode 100644 index 0000000..a3bd740 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/07_ebs_follow_along.md @@ -0,0 +1 @@ +# EBS Follow Along diff --git a/docs/aws/certified_cloud_practitioner/11_storage/08_efs_follow_along.md b/docs/aws/certified_cloud_practitioner/11_storage/08_efs_follow_along.md new file mode 100644 index 0000000..8db4872 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/08_efs_follow_along.md @@ -0,0 +1 @@ +# EFS Follow Along diff --git a/docs/aws/certified_cloud_practitioner/11_storage/09_snow_family_follow_along.md b/docs/aws/certified_cloud_practitioner/11_storage/09_snow_family_follow_along.md new file mode 100644 index 0000000..3686f3f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/11_storage/09_snow_family_follow_along.md @@ -0,0 +1 @@ +# Snow Family Follow Along diff --git a/docs/aws/certified_cloud_practitioner/12_databases/01_what_is_a_database.md b/docs/aws/certified_cloud_practitioner/12_databases/01_what_is_a_database.md new file mode 100644 index 0000000..0a0ce6f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/01_what_is_a_database.md @@ -0,0 +1 @@ +# What is a database? diff --git a/docs/aws/certified_cloud_practitioner/12_databases/02_what_is_a_data_warehouse.md b/docs/aws/certified_cloud_practitioner/12_databases/02_what_is_a_data_warehouse.md new file mode 100644 index 0000000..c5d92f7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/02_what_is_a_data_warehouse.md @@ -0,0 +1 @@ +# What is a data warehouse? diff --git a/docs/aws/certified_cloud_practitioner/12_databases/03_what_is_a_key_value_store.md b/docs/aws/certified_cloud_practitioner/12_databases/03_what_is_a_key_value_store.md new file mode 100644 index 0000000..6af7ffa --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/03_what_is_a_key_value_store.md @@ -0,0 +1 @@ +# What is a key value store? diff --git a/docs/aws/certified_cloud_practitioner/12_databases/04_what_is_a_document_database.md b/docs/aws/certified_cloud_practitioner/12_databases/04_what_is_a_document_database.md new file mode 100644 index 0000000..b999e02 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/04_what_is_a_document_database.md @@ -0,0 +1 @@ +# What is a document database? diff --git a/docs/aws/certified_cloud_practitioner/12_databases/05_nosql_database_services.md b/docs/aws/certified_cloud_practitioner/12_databases/05_nosql_database_services.md new file mode 100644 index 0000000..4e1b15b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/05_nosql_database_services.md @@ -0,0 +1 @@ +# NoSQL Database Services diff --git a/docs/aws/certified_cloud_practitioner/12_databases/06_relational_database_services.md b/docs/aws/certified_cloud_practitioner/12_databases/06_relational_database_services.md new file mode 100644 index 0000000..ebdadcc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/06_relational_database_services.md @@ -0,0 +1 @@ +# Relational Database Services diff --git a/docs/aws/certified_cloud_practitioner/12_databases/07_other_database_services.md b/docs/aws/certified_cloud_practitioner/12_databases/07_other_database_services.md new file mode 100644 index 0000000..e91c835 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/07_other_database_services.md @@ -0,0 +1 @@ +# Other Database Services diff --git a/docs/aws/certified_cloud_practitioner/12_databases/08_dynamodb_follow_along.md b/docs/aws/certified_cloud_practitioner/12_databases/08_dynamodb_follow_along.md new file mode 100644 index 0000000..67aafbc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/08_dynamodb_follow_along.md @@ -0,0 +1 @@ +# DynamoDB Follow Along diff --git a/docs/aws/certified_cloud_practitioner/12_databases/09_rds_follow_along.md b/docs/aws/certified_cloud_practitioner/12_databases/09_rds_follow_along.md new file mode 100644 index 0000000..53c2d52 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/09_rds_follow_along.md @@ -0,0 +1 @@ +# RDS Follow Along diff --git a/docs/aws/certified_cloud_practitioner/12_databases/10_redshift_follow_along.md b/docs/aws/certified_cloud_practitioner/12_databases/10_redshift_follow_along.md new file mode 100644 index 0000000..d8e3401 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/12_databases/10_redshift_follow_along.md @@ -0,0 +1 @@ +# Redshift Follow Along diff --git a/docs/aws/certified_cloud_practitioner/13_networking/01_cloud_native_networking_services.md b/docs/aws/certified_cloud_practitioner/13_networking/01_cloud_native_networking_services.md new file mode 100644 index 0000000..85e4b7f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/13_networking/01_cloud_native_networking_services.md @@ -0,0 +1 @@ +# Cloud-Native Networking Services diff --git a/docs/aws/certified_cloud_practitioner/13_networking/02_enterprise_hybrid_networking_services.md b/docs/aws/certified_cloud_practitioner/13_networking/02_enterprise_hybrid_networking_services.md new file mode 100644 index 0000000..973c0fe --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/13_networking/02_enterprise_hybrid_networking_services.md @@ -0,0 +1 @@ +# Enterprise/Hybrid Networking Services diff --git a/docs/aws/certified_cloud_practitioner/13_networking/03_virtual_private_cloud_vpc_subnets.md b/docs/aws/certified_cloud_practitioner/13_networking/03_virtual_private_cloud_vpc_subnets.md new file mode 100644 index 0000000..59843ee --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/13_networking/03_virtual_private_cloud_vpc_subnets.md @@ -0,0 +1 @@ +# Virtual Private Cloud (VPC) & Subnets diff --git a/docs/aws/certified_cloud_practitioner/13_networking/04_security_groups_vs_nacls.md b/docs/aws/certified_cloud_practitioner/13_networking/04_security_groups_vs_nacls.md new file mode 100644 index 0000000..efbaa57 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/13_networking/04_security_groups_vs_nacls.md @@ -0,0 +1 @@ +# Security Groups vs NACLs diff --git a/docs/aws/certified_cloud_practitioner/13_networking/05_security_groups_vs_nacls_follow_along.md b/docs/aws/certified_cloud_practitioner/13_networking/05_security_groups_vs_nacls_follow_along.md new file mode 100644 index 0000000..7d92a93 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/13_networking/05_security_groups_vs_nacls_follow_along.md @@ -0,0 +1 @@ +# Security Groups vs NACLs Follow Along diff --git a/docs/aws/certified_cloud_practitioner/13_networking/06_aws_cloudfront.md b/docs/aws/certified_cloud_practitioner/13_networking/06_aws_cloudfront.md new file mode 100644 index 0000000..e0e4f67 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/13_networking/06_aws_cloudfront.md @@ -0,0 +1 @@ +# AWS CloudFront diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/01_introduction_to_ec2.md b/docs/aws/certified_cloud_practitioner/14_ec2/01_introduction_to_ec2.md new file mode 100644 index 0000000..1d10931 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/01_introduction_to_ec2.md @@ -0,0 +1 @@ +# Introduction to EC2 diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/02_ec2_instance_families.md b/docs/aws/certified_cloud_practitioner/14_ec2/02_ec2_instance_families.md new file mode 100644 index 0000000..fc009ac --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/02_ec2_instance_families.md @@ -0,0 +1 @@ +# EC2 Instance Families diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/03_ec2_instance_types.md b/docs/aws/certified_cloud_practitioner/14_ec2/03_ec2_instance_types.md new file mode 100644 index 0000000..210404d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/03_ec2_instance_types.md @@ -0,0 +1 @@ +# EC2 Instance Types diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/04_dedicated_host_vs_dedicated_instances.md b/docs/aws/certified_cloud_practitioner/14_ec2/04_dedicated_host_vs_dedicated_instances.md new file mode 100644 index 0000000..702b430 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/04_dedicated_host_vs_dedicated_instances.md @@ -0,0 +1 @@ +# Dedicated Host vs Dedicated Instances diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/05_ec2_tenancy.md b/docs/aws/certified_cloud_practitioner/14_ec2/05_ec2_tenancy.md new file mode 100644 index 0000000..c4a2d5f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/05_ec2_tenancy.md @@ -0,0 +1 @@ +# EC2 Tenancy diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/06_launch_an_ec2_ssh_and_sessions_manager.md b/docs/aws/certified_cloud_practitioner/14_ec2/06_launch_an_ec2_ssh_and_sessions_manager.md new file mode 100644 index 0000000..2da5f68 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/06_launch_an_ec2_ssh_and_sessions_manager.md @@ -0,0 +1 @@ +# Launch an EC2, SSH and Sessions Manager diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/07_elastic_ip.md b/docs/aws/certified_cloud_practitioner/14_ec2/07_elastic_ip.md new file mode 100644 index 0000000..33a9bd2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/07_elastic_ip.md @@ -0,0 +1 @@ +# Elastic IP diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/08_ami_and_launch_template.md b/docs/aws/certified_cloud_practitioner/14_ec2/08_ami_and_launch_template.md new file mode 100644 index 0000000..a1ccf52 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/08_ami_and_launch_template.md @@ -0,0 +1 @@ +# AMI and Launch Template diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/09_launch_an_asg.md b/docs/aws/certified_cloud_practitioner/14_ec2/09_launch_an_asg.md new file mode 100644 index 0000000..fa9ba6f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/09_launch_an_asg.md @@ -0,0 +1 @@ +# Launch an ASG diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/10_launch_an_alb.md b/docs/aws/certified_cloud_practitioner/14_ec2/10_launch_an_alb.md new file mode 100644 index 0000000..9e780b2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/10_launch_an_alb.md @@ -0,0 +1 @@ +# Launch an ALB diff --git a/docs/aws/certified_cloud_practitioner/14_ec2/11_cleanup.md b/docs/aws/certified_cloud_practitioner/14_ec2/11_cleanup.md new file mode 100644 index 0000000..2166f12 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/14_ec2/11_cleanup.md @@ -0,0 +1 @@ +# Cleanup diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/01_ec2_pricing_models.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/01_ec2_pricing_models.md new file mode 100644 index 0000000..892eacf --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/01_ec2_pricing_models.md @@ -0,0 +1 @@ +# Ec2 Pricing Models diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/02_on_demand.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/02_on_demand.md new file mode 100644 index 0000000..2d8d2d2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/02_on_demand.md @@ -0,0 +1 @@ +# On Demand diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/03_reserved_instances.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/03_reserved_instances.md new file mode 100644 index 0000000..2c8714d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/03_reserved_instances.md @@ -0,0 +1 @@ +# Reserved Instances diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/04_ri_attributes.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/04_ri_attributes.md new file mode 100644 index 0000000..202c03e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/04_ri_attributes.md @@ -0,0 +1 @@ +# RI Attributes diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/05_regional_and_zonal_ri.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/05_regional_and_zonal_ri.md new file mode 100644 index 0000000..18d05c8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/05_regional_and_zonal_ri.md @@ -0,0 +1 @@ +# Regional and Zonal RI diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/06_ri_limits.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/06_ri_limits.md new file mode 100644 index 0000000..37dd52a --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/06_ri_limits.md @@ -0,0 +1 @@ +# RI Limits diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/07_capacity_reservations.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/07_capacity_reservations.md new file mode 100644 index 0000000..9547c87 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/07_capacity_reservations.md @@ -0,0 +1 @@ +# Capacity Reservations diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/08_standard_vs_convertible_ri.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/08_standard_vs_convertible_ri.md new file mode 100644 index 0000000..ae1b71e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/08_standard_vs_convertible_ri.md @@ -0,0 +1 @@ +# Standard vs Convertible RI diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/09_ri_marketplace.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/09_ri_marketplace.md new file mode 100644 index 0000000..0dc3e3c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/09_ri_marketplace.md @@ -0,0 +1 @@ +# RI Marketplace diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/10_spot_instances.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/10_spot_instances.md new file mode 100644 index 0000000..a9ddee8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/10_spot_instances.md @@ -0,0 +1 @@ +# Spot Instances diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/11_dedicated_instances.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/11_dedicated_instances.md new file mode 100644 index 0000000..6e1bd63 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/11_dedicated_instances.md @@ -0,0 +1 @@ +# Dedicated Instances diff --git a/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/12_savings_plan.md b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/12_savings_plan.md new file mode 100644 index 0000000..019c465 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/15_ec2_pricing_models/12_savings_plan.md @@ -0,0 +1 @@ +# Savings Plan diff --git a/docs/aws/certified_cloud_practitioner/16_identity/01_zero_trust_model.md b/docs/aws/certified_cloud_practitioner/16_identity/01_zero_trust_model.md new file mode 100644 index 0000000..42414dc --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/01_zero_trust_model.md @@ -0,0 +1 @@ +# Zero-Trust Model diff --git a/docs/aws/certified_cloud_practitioner/16_identity/02_zero_trust_on_aws.md b/docs/aws/certified_cloud_practitioner/16_identity/02_zero_trust_on_aws.md new file mode 100644 index 0000000..d429a0c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/02_zero_trust_on_aws.md @@ -0,0 +1 @@ +# Zero-Trust on AWS diff --git a/docs/aws/certified_cloud_practitioner/16_identity/03_zero_trust_on_aws_with_third_parties.md b/docs/aws/certified_cloud_practitioner/16_identity/03_zero_trust_on_aws_with_third_parties.md new file mode 100644 index 0000000..93f2da0 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/03_zero_trust_on_aws_with_third_parties.md @@ -0,0 +1 @@ +# Zero-Trust on AWS with Third-Parties diff --git a/docs/aws/certified_cloud_practitioner/16_identity/04_directory_service.md b/docs/aws/certified_cloud_practitioner/16_identity/04_directory_service.md new file mode 100644 index 0000000..313943b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/04_directory_service.md @@ -0,0 +1 @@ +# Directory Service diff --git a/docs/aws/certified_cloud_practitioner/16_identity/05_active_directory.md b/docs/aws/certified_cloud_practitioner/16_identity/05_active_directory.md new file mode 100644 index 0000000..f4d0f18 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/05_active_directory.md @@ -0,0 +1 @@ +# Active Directory diff --git a/docs/aws/certified_cloud_practitioner/16_identity/06_identity_providers.md b/docs/aws/certified_cloud_practitioner/16_identity/06_identity_providers.md new file mode 100644 index 0000000..279b570 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/06_identity_providers.md @@ -0,0 +1 @@ +# Identity Providers diff --git a/docs/aws/certified_cloud_practitioner/16_identity/07_single_sign_on.md b/docs/aws/certified_cloud_practitioner/16_identity/07_single_sign_on.md new file mode 100644 index 0000000..2c00ba3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/07_single_sign_on.md @@ -0,0 +1 @@ +# Single-Sign-On diff --git a/docs/aws/certified_cloud_practitioner/16_identity/08_ldap.md b/docs/aws/certified_cloud_practitioner/16_identity/08_ldap.md new file mode 100644 index 0000000..7e8a78b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/08_ldap.md @@ -0,0 +1 @@ +# LDAP diff --git a/docs/aws/certified_cloud_practitioner/16_identity/09_multi_factor_authenication.md b/docs/aws/certified_cloud_practitioner/16_identity/09_multi_factor_authenication.md new file mode 100644 index 0000000..9bb1ae9 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/09_multi_factor_authenication.md @@ -0,0 +1 @@ +# Multi-Factor-Authenication diff --git a/docs/aws/certified_cloud_practitioner/16_identity/10_security_keys.md b/docs/aws/certified_cloud_practitioner/16_identity/10_security_keys.md new file mode 100644 index 0000000..4a56103 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/10_security_keys.md @@ -0,0 +1 @@ +# Security Keys diff --git a/docs/aws/certified_cloud_practitioner/16_identity/11_aws_iam.md b/docs/aws/certified_cloud_practitioner/16_identity/11_aws_iam.md new file mode 100644 index 0000000..a73e876 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/11_aws_iam.md @@ -0,0 +1 @@ +# AWS IAM diff --git a/docs/aws/certified_cloud_practitioner/16_identity/12_anatomy_of_an_iam_policy.md b/docs/aws/certified_cloud_practitioner/16_identity/12_anatomy_of_an_iam_policy.md new file mode 100644 index 0000000..6b8d057 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/12_anatomy_of_an_iam_policy.md @@ -0,0 +1 @@ +# Anatomy of an IAM Policy diff --git a/docs/aws/certified_cloud_practitioner/16_identity/13_iam_policies_follow_along.md b/docs/aws/certified_cloud_practitioner/16_identity/13_iam_policies_follow_along.md new file mode 100644 index 0000000..aaedf1b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/13_iam_policies_follow_along.md @@ -0,0 +1 @@ +# IAM Policies Follow Along diff --git a/docs/aws/certified_cloud_practitioner/16_identity/14_principle_of_least_privilege.md b/docs/aws/certified_cloud_practitioner/16_identity/14_principle_of_least_privilege.md new file mode 100644 index 0000000..37d0f1d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/14_principle_of_least_privilege.md @@ -0,0 +1 @@ +# Principle-of-Least-Privilege diff --git a/docs/aws/certified_cloud_practitioner/16_identity/15_aws_account_root_user.md b/docs/aws/certified_cloud_practitioner/16_identity/15_aws_account_root_user.md new file mode 100644 index 0000000..7c7b6bb --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/15_aws_account_root_user.md @@ -0,0 +1 @@ +# AWS Account Root User diff --git a/docs/aws/certified_cloud_practitioner/16_identity/16_aws_sso.md b/docs/aws/certified_cloud_practitioner/16_identity/16_aws_sso.md new file mode 100644 index 0000000..8341d6f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/16_identity/16_aws_sso.md @@ -0,0 +1 @@ +# AWS SSO diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/01_introduction_to_application_integration.md b/docs/aws/certified_cloud_practitioner/17_application_integration/01_introduction_to_application_integration.md new file mode 100644 index 0000000..dbfcd61 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/01_introduction_to_application_integration.md @@ -0,0 +1 @@ +# Introduction to Application Integration diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/02_queueing_and_sqs.md b/docs/aws/certified_cloud_practitioner/17_application_integration/02_queueing_and_sqs.md new file mode 100644 index 0000000..bf22d1b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/02_queueing_and_sqs.md @@ -0,0 +1 @@ +# Queueing and SQS diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/03_streaming_and_kinesis.md b/docs/aws/certified_cloud_practitioner/17_application_integration/03_streaming_and_kinesis.md new file mode 100644 index 0000000..e7e2f90 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/03_streaming_and_kinesis.md @@ -0,0 +1 @@ +# Streaming and Kinesis diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/04_pub_sub_and_sns.md b/docs/aws/certified_cloud_practitioner/17_application_integration/04_pub_sub_and_sns.md new file mode 100644 index 0000000..ae3d588 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/04_pub_sub_and_sns.md @@ -0,0 +1 @@ +# Pub-Sub and SNS diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/05_api_gateway_and_amazon_api_gateway.md b/docs/aws/certified_cloud_practitioner/17_application_integration/05_api_gateway_and_amazon_api_gateway.md new file mode 100644 index 0000000..c5a53f4 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/05_api_gateway_and_amazon_api_gateway.md @@ -0,0 +1 @@ +# API Gateway and Amazon API Gateway diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/06_state_machines_and_aws_step_functions.md b/docs/aws/certified_cloud_practitioner/17_application_integration/06_state_machines_and_aws_step_functions.md new file mode 100644 index 0000000..dbad27f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/06_state_machines_and_aws_step_functions.md @@ -0,0 +1 @@ +# State Machines and AWS Step Functions diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/07_event_bus_and_amazon_event_bridge.md b/docs/aws/certified_cloud_practitioner/17_application_integration/07_event_bus_and_amazon_event_bridge.md new file mode 100644 index 0000000..78ebdc6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/07_event_bus_and_amazon_event_bridge.md @@ -0,0 +1 @@ +# Event Bus and Amazon Event Bridge diff --git a/docs/aws/certified_cloud_practitioner/17_application_integration/08_application_integration_services.md b/docs/aws/certified_cloud_practitioner/17_application_integration/08_application_integration_services.md new file mode 100644 index 0000000..aae9c7f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/17_application_integration/08_application_integration_services.md @@ -0,0 +1 @@ +# Application Integration Services diff --git a/docs/aws/certified_cloud_practitioner/18_containers/01_vms_vs_containers.md b/docs/aws/certified_cloud_practitioner/18_containers/01_vms_vs_containers.md new file mode 100644 index 0000000..d58fb99 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/18_containers/01_vms_vs_containers.md @@ -0,0 +1 @@ +# VMs vs Containers diff --git a/docs/aws/certified_cloud_practitioner/18_containers/02_what_are_microservices.md b/docs/aws/certified_cloud_practitioner/18_containers/02_what_are_microservices.md new file mode 100644 index 0000000..a5d29fa --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/18_containers/02_what_are_microservices.md @@ -0,0 +1 @@ +# What are Microservices? diff --git a/docs/aws/certified_cloud_practitioner/18_containers/03_kuberenetes.md b/docs/aws/certified_cloud_practitioner/18_containers/03_kuberenetes.md new file mode 100644 index 0000000..6541244 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/18_containers/03_kuberenetes.md @@ -0,0 +1 @@ +# Kuberenetes diff --git a/docs/aws/certified_cloud_practitioner/18_containers/04_docker.md b/docs/aws/certified_cloud_practitioner/18_containers/04_docker.md new file mode 100644 index 0000000..c597eaa --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/18_containers/04_docker.md @@ -0,0 +1 @@ +# Docker diff --git a/docs/aws/certified_cloud_practitioner/18_containers/05_podman.md b/docs/aws/certified_cloud_practitioner/18_containers/05_podman.md new file mode 100644 index 0000000..7f67573 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/18_containers/05_podman.md @@ -0,0 +1 @@ +# Podman diff --git a/docs/aws/certified_cloud_practitioner/18_containers/06_container_services.md b/docs/aws/certified_cloud_practitioner/18_containers/06_container_services.md new file mode 100644 index 0000000..e07b4ef --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/18_containers/06_container_services.md @@ -0,0 +1 @@ +# Container Services diff --git a/docs/aws/certified_cloud_practitioner/19_governance/01_organizations_and_accounts.md b/docs/aws/certified_cloud_practitioner/19_governance/01_organizations_and_accounts.md new file mode 100644 index 0000000..9527e48 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/01_organizations_and_accounts.md @@ -0,0 +1 @@ +# Organizations and Accounts diff --git a/docs/aws/certified_cloud_practitioner/19_governance/02_aws_control_tower.md b/docs/aws/certified_cloud_practitioner/19_governance/02_aws_control_tower.md new file mode 100644 index 0000000..cc18a56 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/02_aws_control_tower.md @@ -0,0 +1 @@ +# AWS Control Tower diff --git a/docs/aws/certified_cloud_practitioner/19_governance/03_aws_config.md b/docs/aws/certified_cloud_practitioner/19_governance/03_aws_config.md new file mode 100644 index 0000000..10e822d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/03_aws_config.md @@ -0,0 +1 @@ +# AWS Config diff --git a/docs/aws/certified_cloud_practitioner/19_governance/04_aws_config_followalong.md b/docs/aws/certified_cloud_practitioner/19_governance/04_aws_config_followalong.md new file mode 100644 index 0000000..e5affc6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/04_aws_config_followalong.md @@ -0,0 +1 @@ +# AWS Config FollowAlong diff --git a/docs/aws/certified_cloud_practitioner/19_governance/05_aws_quick_starts.md b/docs/aws/certified_cloud_practitioner/19_governance/05_aws_quick_starts.md new file mode 100644 index 0000000..643583e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/05_aws_quick_starts.md @@ -0,0 +1 @@ +# AWS Quick Starts diff --git a/docs/aws/certified_cloud_practitioner/19_governance/06_aws_quickstarts_follow_along.md b/docs/aws/certified_cloud_practitioner/19_governance/06_aws_quickstarts_follow_along.md new file mode 100644 index 0000000..fd3a679 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/06_aws_quickstarts_follow_along.md @@ -0,0 +1 @@ +# AWS QuickStarts Follow Along diff --git a/docs/aws/certified_cloud_practitioner/19_governance/07_tagging.md b/docs/aws/certified_cloud_practitioner/19_governance/07_tagging.md new file mode 100644 index 0000000..06d3ea6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/07_tagging.md @@ -0,0 +1 @@ +# Tagging diff --git a/docs/aws/certified_cloud_practitioner/19_governance/08_tag_name_follow_along.md b/docs/aws/certified_cloud_practitioner/19_governance/08_tag_name_follow_along.md new file mode 100644 index 0000000..2243a33 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/08_tag_name_follow_along.md @@ -0,0 +1 @@ +# Tag Name Follow Along diff --git a/docs/aws/certified_cloud_practitioner/19_governance/09_resource_groups.md b/docs/aws/certified_cloud_practitioner/19_governance/09_resource_groups.md new file mode 100644 index 0000000..dd67109 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/09_resource_groups.md @@ -0,0 +1 @@ +# Resource Groups diff --git a/docs/aws/certified_cloud_practitioner/19_governance/10_resource_groups_follow_along.md b/docs/aws/certified_cloud_practitioner/19_governance/10_resource_groups_follow_along.md new file mode 100644 index 0000000..1cbe469 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/10_resource_groups_follow_along.md @@ -0,0 +1 @@ +# Resource Groups Follow Along diff --git a/docs/aws/certified_cloud_practitioner/19_governance/11_business_centric_services.md b/docs/aws/certified_cloud_practitioner/19_governance/11_business_centric_services.md new file mode 100644 index 0000000..626a3db --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/19_governance/11_business_centric_services.md @@ -0,0 +1 @@ +# Business Centric Services diff --git a/docs/aws/certified_cloud_practitioner/20_provisioning/01_provisioning_services.md b/docs/aws/certified_cloud_practitioner/20_provisioning/01_provisioning_services.md new file mode 100644 index 0000000..73a2d19 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/20_provisioning/01_provisioning_services.md @@ -0,0 +1 @@ +# Provisioning Services diff --git a/docs/aws/certified_cloud_practitioner/20_provisioning/02_aws_elastic_beanstalk.md b/docs/aws/certified_cloud_practitioner/20_provisioning/02_aws_elastic_beanstalk.md new file mode 100644 index 0000000..b9ef2bd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/20_provisioning/02_aws_elastic_beanstalk.md @@ -0,0 +1 @@ +# AWS Elastic Beanstalk diff --git a/docs/aws/certified_cloud_practitioner/20_provisioning/03_aws_elastic_beanstalk_follow_along.md b/docs/aws/certified_cloud_practitioner/20_provisioning/03_aws_elastic_beanstalk_follow_along.md new file mode 100644 index 0000000..b9492f8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/20_provisioning/03_aws_elastic_beanstalk_follow_along.md @@ -0,0 +1 @@ +# AWS Elastic Beanstalk Follow Along diff --git a/docs/aws/certified_cloud_practitioner/21_serverless_services/01_what_is_serverless.md b/docs/aws/certified_cloud_practitioner/21_serverless_services/01_what_is_serverless.md new file mode 100644 index 0000000..763712c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/21_serverless_services/01_what_is_serverless.md @@ -0,0 +1 @@ +# What is Serverless? diff --git a/docs/aws/certified_cloud_practitioner/21_serverless_services/02_serverless_services.md b/docs/aws/certified_cloud_practitioner/21_serverless_services/02_serverless_services.md new file mode 100644 index 0000000..af46ff2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/21_serverless_services/02_serverless_services.md @@ -0,0 +1 @@ +# Serverless Services diff --git a/docs/aws/certified_cloud_practitioner/22_windows_on_aws/01_windows_on_aws.md b/docs/aws/certified_cloud_practitioner/22_windows_on_aws/01_windows_on_aws.md new file mode 100644 index 0000000..5c276ac --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/22_windows_on_aws/01_windows_on_aws.md @@ -0,0 +1 @@ +# Windows on AWS diff --git a/docs/aws/certified_cloud_practitioner/22_windows_on_aws/02_ec2_windows_follow_along.md b/docs/aws/certified_cloud_practitioner/22_windows_on_aws/02_ec2_windows_follow_along.md new file mode 100644 index 0000000..120ef77 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/22_windows_on_aws/02_ec2_windows_follow_along.md @@ -0,0 +1 @@ +# EC2 Windows Follow Along diff --git a/docs/aws/certified_cloud_practitioner/22_windows_on_aws/03_aws_license_manager.md b/docs/aws/certified_cloud_practitioner/22_windows_on_aws/03_aws_license_manager.md new file mode 100644 index 0000000..81ef3e5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/22_windows_on_aws/03_aws_license_manager.md @@ -0,0 +1 @@ +# AWS License Manager diff --git a/docs/aws/certified_cloud_practitioner/23_logging/01_logging_services.md b/docs/aws/certified_cloud_practitioner/23_logging/01_logging_services.md new file mode 100644 index 0000000..06280f2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/01_logging_services.md @@ -0,0 +1 @@ +# Logging Services diff --git a/docs/aws/certified_cloud_practitioner/23_logging/02_aws_cloud_trail.md b/docs/aws/certified_cloud_practitioner/23_logging/02_aws_cloud_trail.md new file mode 100644 index 0000000..8d508f8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/02_aws_cloud_trail.md @@ -0,0 +1 @@ +# AWS Cloud Trail diff --git a/docs/aws/certified_cloud_practitioner/23_logging/03_cloudwatch_alarm.md b/docs/aws/certified_cloud_practitioner/23_logging/03_cloudwatch_alarm.md new file mode 100644 index 0000000..65b0912 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/03_cloudwatch_alarm.md @@ -0,0 +1 @@ +# CloudWatch Alarm diff --git a/docs/aws/certified_cloud_practitioner/23_logging/04_mastering_attached_flashcard.md b/docs/aws/certified_cloud_practitioner/23_logging/04_mastering_attached_flashcard.md new file mode 100644 index 0000000..eea98bd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/04_mastering_attached_flashcard.md @@ -0,0 +1 @@ +# mastering attached flashcard diff --git a/docs/aws/certified_cloud_practitioner/23_logging/05_anatomy_of_an_alarm.md b/docs/aws/certified_cloud_practitioner/23_logging/05_anatomy_of_an_alarm.md new file mode 100644 index 0000000..07f5b26 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/05_anatomy_of_an_alarm.md @@ -0,0 +1 @@ +# Anatomy of an Alarm diff --git a/docs/aws/certified_cloud_practitioner/23_logging/06_log_streams_and_events.md b/docs/aws/certified_cloud_practitioner/23_logging/06_log_streams_and_events.md new file mode 100644 index 0000000..e4f1312 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/06_log_streams_and_events.md @@ -0,0 +1 @@ +# Log Streams and Events diff --git a/docs/aws/certified_cloud_practitioner/23_logging/07_log_insights.md b/docs/aws/certified_cloud_practitioner/23_logging/07_log_insights.md new file mode 100644 index 0000000..7d89d9b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/07_log_insights.md @@ -0,0 +1 @@ +# Log Insights diff --git a/docs/aws/certified_cloud_practitioner/23_logging/08_cloudwatch_metrics.md b/docs/aws/certified_cloud_practitioner/23_logging/08_cloudwatch_metrics.md new file mode 100644 index 0000000..a47fea4 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/08_cloudwatch_metrics.md @@ -0,0 +1 @@ +# CloudWatch Metrics diff --git a/docs/aws/certified_cloud_practitioner/23_logging/09_aws_cloudtrail_follow_along.md b/docs/aws/certified_cloud_practitioner/23_logging/09_aws_cloudtrail_follow_along.md new file mode 100644 index 0000000..256c57f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/23_logging/09_aws_cloudtrail_follow_along.md @@ -0,0 +1 @@ +# AWS CloudTrail Follow Along diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/01_introduction_to_ml_and_al.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/01_introduction_to_ml_and_al.md new file mode 100644 index 0000000..22cc936 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/01_introduction_to_ml_and_al.md @@ -0,0 +1 @@ +# Introduction to ML and Al diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/02_al_and_ml_services.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/02_al_and_ml_services.md new file mode 100644 index 0000000..552940f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/02_al_and_ml_services.md @@ -0,0 +1 @@ +# Al and ML Services diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/03_bigdata_and_analytics_services.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/03_bigdata_and_analytics_services.md new file mode 100644 index 0000000..99ae2ba --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/03_bigdata_and_analytics_services.md @@ -0,0 +1 @@ +# BigData and Analytics Services diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/04_amazon_quicksight.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/04_amazon_quicksight.md new file mode 100644 index 0000000..1091014 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/04_amazon_quicksight.md @@ -0,0 +1 @@ +# Amazon QuickSight diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/05_quicksight_follow_along.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/05_quicksight_follow_along.md new file mode 100644 index 0000000..c7e6aa8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/05_quicksight_follow_along.md @@ -0,0 +1 @@ +# QuickSight Follow Along diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/06_machine_learning_and_al_services_extended.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/06_machine_learning_and_al_services_extended.md new file mode 100644 index 0000000..97dedb0 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/06_machine_learning_and_al_services_extended.md @@ -0,0 +1 @@ +# Machine Learning and Al Services - Extended diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/07_generative_al.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/07_generative_al.md new file mode 100644 index 0000000..acac668 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/07_generative_al.md @@ -0,0 +1 @@ +# Generative Al diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/08_ml_and_dl_frameworks_and_tools.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/08_ml_and_dl_frameworks_and_tools.md new file mode 100644 index 0000000..3c7a580 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/08_ml_and_dl_frameworks_and_tools.md @@ -0,0 +1 @@ +# ML and DL Frameworks and Tools diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/09_apache_mxnet.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/09_apache_mxnet.md new file mode 100644 index 0000000..c7818ec --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/09_apache_mxnet.md @@ -0,0 +1 @@ +# Apache MXNet diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/10_what_is_intel.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/10_what_is_intel.md new file mode 100644 index 0000000..1ad9542 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/10_what_is_intel.md @@ -0,0 +1 @@ +# What is Intel diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/11_intel_xeon_scalable_and_intel_gaudi.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/11_intel_xeon_scalable_and_intel_gaudi.md new file mode 100644 index 0000000..cd755a3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/11_intel_xeon_scalable_and_intel_gaudi.md @@ -0,0 +1 @@ +# Intel Xeon Scalable and Intel Gaudi diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/12_what_is_a_gpu.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/12_what_is_a_gpu.md new file mode 100644 index 0000000..da2f353 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/12_what_is_a_gpu.md @@ -0,0 +1 @@ +# What is a GPU diff --git a/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/13_what_is_cuda.md b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/13_what_is_cuda.md new file mode 100644 index 0000000..b065bae --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/13_what_is_cuda.md @@ -0,0 +1 @@ +# What is CUDA diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/01_aws_well_architected_framework.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/01_aws_well_architected_framework.md new file mode 100644 index 0000000..ff75d46 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/01_aws_well_architected_framework.md @@ -0,0 +1 @@ +# AWS Well-Architected Framework diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/02_general_defintions.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/02_general_defintions.md new file mode 100644 index 0000000..b9e9932 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/02_general_defintions.md @@ -0,0 +1 @@ +# General Defintions diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/03_on_architecture.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/03_on_architecture.md new file mode 100644 index 0000000..2285116 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/03_on_architecture.md @@ -0,0 +1 @@ +# On Architecture diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/04_amazon_leadership_principles.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/04_amazon_leadership_principles.md new file mode 100644 index 0000000..cbd7738 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/04_amazon_leadership_principles.md @@ -0,0 +1 @@ +# Amazon Leadership Principles diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/05_general_design_principles.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/05_general_design_principles.md new file mode 100644 index 0000000..2fd1f82 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/05_general_design_principles.md @@ -0,0 +1 @@ +# General Design Principles diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/06_anatomy_of_a_pillar.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/06_anatomy_of_a_pillar.md new file mode 100644 index 0000000..5140fa3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/06_anatomy_of_a_pillar.md @@ -0,0 +1 @@ +# Anatomy of a Pillar diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/07_operational_excellence.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/07_operational_excellence.md new file mode 100644 index 0000000..ec1611b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/07_operational_excellence.md @@ -0,0 +1 @@ +# Operational Excellence diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/08_security.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/08_security.md new file mode 100644 index 0000000..8dbb2f9 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/08_security.md @@ -0,0 +1 @@ +# Security diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/09_reliability.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/09_reliability.md new file mode 100644 index 0000000..5c95520 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/09_reliability.md @@ -0,0 +1 @@ +# Reliability diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/10_performance_efficiency.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/10_performance_efficiency.md new file mode 100644 index 0000000..b4618e5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/10_performance_efficiency.md @@ -0,0 +1 @@ +# Performance Efficiency diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/11_cost_optimization.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/11_cost_optimization.md new file mode 100644 index 0000000..65ed670 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/11_cost_optimization.md @@ -0,0 +1 @@ +# Cost Optimization diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/12_aws_well_architected_tool.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/12_aws_well_architected_tool.md new file mode 100644 index 0000000..b0bd619 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/12_aws_well_architected_tool.md @@ -0,0 +1 @@ +# AWS Well-Architected-Tool diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/13_well_architected_framework_and_tool_follow_along.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/13_well_architected_framework_and_tool_follow_along.md new file mode 100644 index 0000000..4b17dfa --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/13_well_architected_framework_and_tool_follow_along.md @@ -0,0 +1 @@ +# Well-Architected Framework and Tool- Follow Along diff --git a/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/14_aws_architecture_center.md b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/14_aws_architecture_center.md new file mode 100644 index 0000000..ab75433 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/25_aws_well_architected_framework/14_aws_architecture_center.md @@ -0,0 +1 @@ +# AWS Architecture Center diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/01_total_cost_of_ownership_tco.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/01_total_cost_of_ownership_tco.md new file mode 100644 index 0000000..ee87fd6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/01_total_cost_of_ownership_tco.md @@ -0,0 +1 @@ +# Total Cost of Ownership (TCO) diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/02_capex_vs_opex.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/02_capex_vs_opex.md new file mode 100644 index 0000000..9e9f77d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/02_capex_vs_opex.md @@ -0,0 +1 @@ +# CAPEX vS OPEX diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/03_shifting_it_personnel.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/03_shifting_it_personnel.md new file mode 100644 index 0000000..6c42a4c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/03_shifting_it_personnel.md @@ -0,0 +1 @@ +# Shifting-IT Personnel diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/04_aws_pricing_calculator.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/04_aws_pricing_calculator.md new file mode 100644 index 0000000..d53b160 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/04_aws_pricing_calculator.md @@ -0,0 +1 @@ +# AWS Pricing Calculator diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/05_aws_pricing_calculator_follow_along.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/05_aws_pricing_calculator_follow_along.md new file mode 100644 index 0000000..ba787b3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/05_aws_pricing_calculator_follow_along.md @@ -0,0 +1 @@ +# AWS Pricing Calculator Follow Along diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/06_migration_evaluator.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/06_migration_evaluator.md new file mode 100644 index 0000000..6c9ce4c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/06_migration_evaluator.md @@ -0,0 +1 @@ +# Migration Evaluator diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/07_vm_import_export.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/07_vm_import_export.md new file mode 100644 index 0000000..05bea4b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/07_vm_import_export.md @@ -0,0 +1 @@ +# VM Import Export diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/08_database_migration_service.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/08_database_migration_service.md new file mode 100644 index 0000000..8d24a2d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/08_database_migration_service.md @@ -0,0 +1 @@ +# Database Migration Service diff --git a/docs/aws/certified_cloud_practitioner/26_tco_and_migration/09_cloud_adoption_framework.md b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/09_cloud_adoption_framework.md new file mode 100644 index 0000000..7e642a3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/26_tco_and_migration/09_cloud_adoption_framework.md @@ -0,0 +1 @@ +# Cloud Adoption Framework diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/01_aws_free_services.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/01_aws_free_services.md new file mode 100644 index 0000000..e88f082 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/01_aws_free_services.md @@ -0,0 +1 @@ +# AWS Free Services diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/02_aws_support_plans.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/02_aws_support_plans.md new file mode 100644 index 0000000..4a9cb60 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/02_aws_support_plans.md @@ -0,0 +1 @@ +# AWS Support Plans diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/03_technical_account_manager.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/03_technical_account_manager.md new file mode 100644 index 0000000..ef64cef --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/03_technical_account_manager.md @@ -0,0 +1 @@ +# Technical Account Manager diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/04_aws_support_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/04_aws_support_follow_along.md new file mode 100644 index 0000000..51a7b81 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/04_aws_support_follow_along.md @@ -0,0 +1 @@ +# AWS Support Follow Along diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/05_aws_marketplace.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/05_aws_marketplace.md new file mode 100644 index 0000000..5e964d7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/05_aws_marketplace.md @@ -0,0 +1 @@ +# AWS Marketplace diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/06_aws_marketplace_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/06_aws_marketplace_follow_along.md new file mode 100644 index 0000000..36035e4 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/06_aws_marketplace_follow_along.md @@ -0,0 +1 @@ +# AWS Marketplace Follow Along diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/07_consolidated_billing.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/07_consolidated_billing.md new file mode 100644 index 0000000..facb9ab --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/07_consolidated_billing.md @@ -0,0 +1 @@ +# Consolidated Billing diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/08_consolidated_billing_volume_discounts.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/08_consolidated_billing_volume_discounts.md new file mode 100644 index 0000000..3bc4ecf --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/08_consolidated_billing_volume_discounts.md @@ -0,0 +1 @@ +# Consolidated Billing Volume Discounts diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/09_aws_trusted_advisor.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/09_aws_trusted_advisor.md new file mode 100644 index 0000000..506a0d2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/09_aws_trusted_advisor.md @@ -0,0 +1 @@ +# AWS Trusted Advisor diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/10_aws_trusted_advisor_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/10_aws_trusted_advisor_follow_along.md new file mode 100644 index 0000000..a4c379f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/10_aws_trusted_advisor_follow_along.md @@ -0,0 +1 @@ +# AWS Trusted Advisor Follow Along diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/11_slas.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/11_slas.md new file mode 100644 index 0000000..b272813 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/11_slas.md @@ -0,0 +1 @@ +# SLAS diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/12_aws_sla_examples.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/12_aws_sla_examples.md new file mode 100644 index 0000000..36e88c3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/12_aws_sla_examples.md @@ -0,0 +1 @@ +# AWS SLA Examples diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/13_aws_sla_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/13_aws_sla_follow_along.md new file mode 100644 index 0000000..e65d2aa --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/13_aws_sla_follow_along.md @@ -0,0 +1 @@ +# AWS SLA Follow Along diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/14_service_health_dashboard.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/14_service_health_dashboard.md new file mode 100644 index 0000000..5e6b1fd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/14_service_health_dashboard.md @@ -0,0 +1 @@ +# Service Health Dashboard diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/15_aws_personal_health_dashboard.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/15_aws_personal_health_dashboard.md new file mode 100644 index 0000000..bd173c5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/15_aws_personal_health_dashboard.md @@ -0,0 +1 @@ +# AWS Personal Health Dashboard diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/16_aws_abuse.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/16_aws_abuse.md new file mode 100644 index 0000000..a986b9a --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/16_aws_abuse.md @@ -0,0 +1 @@ +# AWS Abuse diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/17_aws_abuse_report_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/17_aws_abuse_report_follow_along.md new file mode 100644 index 0000000..3a7c7ab --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/17_aws_abuse_report_follow_along.md @@ -0,0 +1 @@ +# AWS Abuse Report Follow Along diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/18_aws_free_tier.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/18_aws_free_tier.md new file mode 100644 index 0000000..34f11d5 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/18_aws_free_tier.md @@ -0,0 +1 @@ +# AWS Free Tier diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/19_aws_credits.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/19_aws_credits.md new file mode 100644 index 0000000..5d7e6a9 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/19_aws_credits.md @@ -0,0 +1 @@ +# AWS Credits diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/20_aws_partner_network.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/20_aws_partner_network.md new file mode 100644 index 0000000..5babb91 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/20_aws_partner_network.md @@ -0,0 +1 @@ +# AWS Partner Network diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/21_aws_budgets.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/21_aws_budgets.md new file mode 100644 index 0000000..9270f47 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/21_aws_budgets.md @@ -0,0 +1 @@ +# AWS Budgets diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/22_aws_budget_reports.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/22_aws_budget_reports.md new file mode 100644 index 0000000..bf4591b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/22_aws_budget_reports.md @@ -0,0 +1 @@ +# AWS Budget Reports diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/23_aws_cost_and_usage_reports.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/23_aws_cost_and_usage_reports.md new file mode 100644 index 0000000..cefd895 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/23_aws_cost_and_usage_reports.md @@ -0,0 +1 @@ +# AWS Cost and Usage Reports diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/24_cost_allocation_tags.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/24_cost_allocation_tags.md new file mode 100644 index 0000000..bebced1 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/24_cost_allocation_tags.md @@ -0,0 +1 @@ +# Cost Allocation Tags diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/25_billing_alarms.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/25_billing_alarms.md new file mode 100644 index 0000000..4ebbdac --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/25_billing_alarms.md @@ -0,0 +1 @@ +# Billing Alarms diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/26_aws_cost_explorer.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/26_aws_cost_explorer.md new file mode 100644 index 0000000..6db516c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/26_aws_cost_explorer.md @@ -0,0 +1 @@ +# AWS Cost Explorer diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/27_aws_cost_explorer_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/27_aws_cost_explorer_follow_along.md new file mode 100644 index 0000000..37753c8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/27_aws_cost_explorer_follow_along.md @@ -0,0 +1 @@ +# AWS Cost Explorer Follow Along diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/28_programmatic_pricing_apls.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/28_programmatic_pricing_apls.md new file mode 100644 index 0000000..eabc7a7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/28_programmatic_pricing_apls.md @@ -0,0 +1 @@ +# Programmatic Pricing APls diff --git a/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/29_aws_savings_plan_follow_along.md b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/29_aws_savings_plan_follow_along.md new file mode 100644 index 0000000..644a258 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/27_billing_pricing_and_support/29_aws_savings_plan_follow_along.md @@ -0,0 +1 @@ +# AWS Savings Plan Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/01_defense_in_depth.md b/docs/aws/certified_cloud_practitioner/28_security/01_defense_in_depth.md new file mode 100644 index 0000000..fe33489 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/01_defense_in_depth.md @@ -0,0 +1 @@ +# Defense-In-Depth diff --git a/docs/aws/certified_cloud_practitioner/28_security/02_cia_triad.md b/docs/aws/certified_cloud_practitioner/28_security/02_cia_triad.md new file mode 100644 index 0000000..3ee26ac --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/02_cia_triad.md @@ -0,0 +1 @@ +# CIA Triad diff --git a/docs/aws/certified_cloud_practitioner/28_security/03_vulnerabilities.md b/docs/aws/certified_cloud_practitioner/28_security/03_vulnerabilities.md new file mode 100644 index 0000000..d78ad33 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/03_vulnerabilities.md @@ -0,0 +1 @@ +# Vulnerabilities diff --git a/docs/aws/certified_cloud_practitioner/28_security/04_encryption.md b/docs/aws/certified_cloud_practitioner/28_security/04_encryption.md new file mode 100644 index 0000000..1ca319e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/04_encryption.md @@ -0,0 +1 @@ +# Encryption diff --git a/docs/aws/certified_cloud_practitioner/28_security/05_cyphers.md b/docs/aws/certified_cloud_practitioner/28_security/05_cyphers.md new file mode 100644 index 0000000..562396b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/05_cyphers.md @@ -0,0 +1 @@ +# Cyphers diff --git a/docs/aws/certified_cloud_practitioner/28_security/06_cryptographic_keys.md b/docs/aws/certified_cloud_practitioner/28_security/06_cryptographic_keys.md new file mode 100644 index 0000000..84bc40b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/06_cryptographic_keys.md @@ -0,0 +1 @@ +# Cryptographic Keys diff --git a/docs/aws/certified_cloud_practitioner/28_security/07_hashing_and_salting.md b/docs/aws/certified_cloud_practitioner/28_security/07_hashing_and_salting.md new file mode 100644 index 0000000..aeb6f5d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/07_hashing_and_salting.md @@ -0,0 +1 @@ +# Hashing and Salting diff --git a/docs/aws/certified_cloud_practitioner/28_security/08_digital_signatures_and_signing.md b/docs/aws/certified_cloud_practitioner/28_security/08_digital_signatures_and_signing.md new file mode 100644 index 0000000..3e597f3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/08_digital_signatures_and_signing.md @@ -0,0 +1 @@ +# Digital Signatures and Signing diff --git a/docs/aws/certified_cloud_practitioner/28_security/09_in_transit_vs_at_rest_encryption.md b/docs/aws/certified_cloud_practitioner/28_security/09_in_transit_vs_at_rest_encryption.md new file mode 100644 index 0000000..4e41669 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/09_in_transit_vs_at_rest_encryption.md @@ -0,0 +1 @@ +# In-Transit vs At-Rest Encryption diff --git a/docs/aws/certified_cloud_practitioner/28_security/10_compliance_programs.md b/docs/aws/certified_cloud_practitioner/28_security/10_compliance_programs.md new file mode 100644 index 0000000..3d36fed --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/10_compliance_programs.md @@ -0,0 +1 @@ +# Compliance Programs diff --git a/docs/aws/certified_cloud_practitioner/28_security/11_aws_compliance_programs_follow_along.md b/docs/aws/certified_cloud_practitioner/28_security/11_aws_compliance_programs_follow_along.md new file mode 100644 index 0000000..b6f2274 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/11_aws_compliance_programs_follow_along.md @@ -0,0 +1 @@ +# AWS Compliance Programs Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/12_pen_testing.md b/docs/aws/certified_cloud_practitioner/28_security/12_pen_testing.md new file mode 100644 index 0000000..2961fa6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/12_pen_testing.md @@ -0,0 +1 @@ +# Pen Testing diff --git a/docs/aws/certified_cloud_practitioner/28_security/13_pen_testing_follow_along.md b/docs/aws/certified_cloud_practitioner/28_security/13_pen_testing_follow_along.md new file mode 100644 index 0000000..0854955 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/13_pen_testing_follow_along.md @@ -0,0 +1 @@ +# Pen Testing Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/14_aws_artifact.md b/docs/aws/certified_cloud_practitioner/28_security/14_aws_artifact.md new file mode 100644 index 0000000..562e821 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/14_aws_artifact.md @@ -0,0 +1 @@ +# AWS Artifact diff --git a/docs/aws/certified_cloud_practitioner/28_security/15_aws_artifact_follow_along.md b/docs/aws/certified_cloud_practitioner/28_security/15_aws_artifact_follow_along.md new file mode 100644 index 0000000..a3a2456 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/15_aws_artifact_follow_along.md @@ -0,0 +1 @@ +# AWS Artifact Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/16_aws_inspector.md b/docs/aws/certified_cloud_practitioner/28_security/16_aws_inspector.md new file mode 100644 index 0000000..47a47f0 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/16_aws_inspector.md @@ -0,0 +1 @@ +# AWS Inspector diff --git a/docs/aws/certified_cloud_practitioner/28_security/17_ddos.md b/docs/aws/certified_cloud_practitioner/28_security/17_ddos.md new file mode 100644 index 0000000..48a73ba --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/17_ddos.md @@ -0,0 +1 @@ +# DDoS diff --git a/docs/aws/certified_cloud_practitioner/28_security/18_aws_shield.md b/docs/aws/certified_cloud_practitioner/28_security/18_aws_shield.md new file mode 100644 index 0000000..9f514e3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/18_aws_shield.md @@ -0,0 +1 @@ +# AWS Shield diff --git a/docs/aws/certified_cloud_practitioner/28_security/19_aws_guard_duty.md b/docs/aws/certified_cloud_practitioner/28_security/19_aws_guard_duty.md new file mode 100644 index 0000000..cfdc6e7 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/19_aws_guard_duty.md @@ -0,0 +1 @@ +# AWS Guard Duty diff --git a/docs/aws/certified_cloud_practitioner/28_security/20_aws_guard_duty_follow_along.md b/docs/aws/certified_cloud_practitioner/28_security/20_aws_guard_duty_follow_along.md new file mode 100644 index 0000000..81ea61b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/20_aws_guard_duty_follow_along.md @@ -0,0 +1 @@ +# AWS Guard Duty Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/21_aws_vpn.md b/docs/aws/certified_cloud_practitioner/28_security/21_aws_vpn.md new file mode 100644 index 0000000..3129cd0 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/21_aws_vpn.md @@ -0,0 +1 @@ +# AWS VPN diff --git a/docs/aws/certified_cloud_practitioner/28_security/22_aws_waf.md b/docs/aws/certified_cloud_practitioner/28_security/22_aws_waf.md new file mode 100644 index 0000000..f87772c --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/22_aws_waf.md @@ -0,0 +1 @@ +# AWS WAF diff --git a/docs/aws/certified_cloud_practitioner/28_security/23_aws_waf_follow_along.md b/docs/aws/certified_cloud_practitioner/28_security/23_aws_waf_follow_along.md new file mode 100644 index 0000000..05bbab2 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/23_aws_waf_follow_along.md @@ -0,0 +1 @@ +# AWS WAF Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/24_hardware_security_module.md b/docs/aws/certified_cloud_practitioner/28_security/24_hardware_security_module.md new file mode 100644 index 0000000..e68fdcd --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/24_hardware_security_module.md @@ -0,0 +1 @@ +# Hardware Security Module diff --git a/docs/aws/certified_cloud_practitioner/28_security/25_aws_kms.md b/docs/aws/certified_cloud_practitioner/28_security/25_aws_kms.md new file mode 100644 index 0000000..8f36623 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/25_aws_kms.md @@ -0,0 +1 @@ +# AWS KMS diff --git a/docs/aws/certified_cloud_practitioner/28_security/26_aws_kms_follow_along.md b/docs/aws/certified_cloud_practitioner/28_security/26_aws_kms_follow_along.md new file mode 100644 index 0000000..83ccf97 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/26_aws_kms_follow_along.md @@ -0,0 +1 @@ +# AWS KMS Follow Along diff --git a/docs/aws/certified_cloud_practitioner/28_security/27_cloudhsm.md b/docs/aws/certified_cloud_practitioner/28_security/27_cloudhsm.md new file mode 100644 index 0000000..5e4666b --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/28_security/27_cloudhsm.md @@ -0,0 +1 @@ +# CloudHSM diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/01_know_your_initialisms.md b/docs/aws/certified_cloud_practitioner/29_variation_study/01_know_your_initialisms.md new file mode 100644 index 0000000..1cbc10f --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/01_know_your_initialisms.md @@ -0,0 +1 @@ +# Know Your Initialisms diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/02_aws_config_aws_appconfig.md b/docs/aws/certified_cloud_practitioner/29_variation_study/02_aws_config_aws_appconfig.md new file mode 100644 index 0000000..eb13558 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/02_aws_config_aws_appconfig.md @@ -0,0 +1 @@ +# AWS Config AWS AppConfig diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/03_sns_vs_sqs.md b/docs/aws/certified_cloud_practitioner/29_variation_study/03_sns_vs_sqs.md new file mode 100644 index 0000000..b5bcdc8 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/03_sns_vs_sqs.md @@ -0,0 +1 @@ +# SNS vs SQS diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/04_sns_vs_ses_vs_pinpoint_vs_workmail.md b/docs/aws/certified_cloud_practitioner/29_variation_study/04_sns_vs_ses_vs_pinpoint_vs_workmail.md new file mode 100644 index 0000000..e7a7a11 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/04_sns_vs_ses_vs_pinpoint_vs_workmail.md @@ -0,0 +1 @@ +# SNS vs SES vs PinPoint vs Workmail diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/05_amazon_inspector_vs_aws_trusted_advisor.md b/docs/aws/certified_cloud_practitioner/29_variation_study/05_amazon_inspector_vs_aws_trusted_advisor.md new file mode 100644 index 0000000..6f3c3d0 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/05_amazon_inspector_vs_aws_trusted_advisor.md @@ -0,0 +1 @@ +# Amazon Inspector vs AWS Trusted Advisor diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/06_connect_named_services.md b/docs/aws/certified_cloud_practitioner/29_variation_study/06_connect_named_services.md new file mode 100644 index 0000000..ec20954 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/06_connect_named_services.md @@ -0,0 +1 @@ +# Connect Named Services diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/07_elastic_transcoder_vs_mediaconvert.md b/docs/aws/certified_cloud_practitioner/29_variation_study/07_elastic_transcoder_vs_mediaconvert.md new file mode 100644 index 0000000..27535d6 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/07_elastic_transcoder_vs_mediaconvert.md @@ -0,0 +1 @@ +# Elastic Transcoder vs MediaConvert diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/08_aws_artifact_vs_amazon_inspector.md b/docs/aws/certified_cloud_practitioner/29_variation_study/08_aws_artifact_vs_amazon_inspector.md new file mode 100644 index 0000000..7e27197 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/08_aws_artifact_vs_amazon_inspector.md @@ -0,0 +1 @@ +# AWS Artifact vs Amazon Inspector diff --git a/docs/aws/certified_cloud_practitioner/29_variation_study/09_elb_variants.md b/docs/aws/certified_cloud_practitioner/29_variation_study/09_elb_variants.md new file mode 100644 index 0000000..9ef813e --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/29_variation_study/09_elb_variants.md @@ -0,0 +1 @@ +# ELB variants diff --git a/docs/aws/certified_cloud_practitioner/30_next_steps/01_booking_your_exam.md b/docs/aws/certified_cloud_practitioner/30_next_steps/01_booking_your_exam.md new file mode 100644 index 0000000..c3ce9a3 --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/30_next_steps/01_booking_your_exam.md @@ -0,0 +1 @@ +# Booking Your Exam diff --git a/docs/aws/certified_cloud_practitioner/course.yml b/docs/aws/certified_cloud_practitioner/course.yml new file mode 100644 index 0000000..ad93a0d --- /dev/null +++ b/docs/aws/certified_cloud_practitioner/course.yml @@ -0,0 +1,384 @@ +category: AWS +name: Certified Cloud Practitioner +chapters: + - name: Introduction + sections: + - Meet Your Instructor + - Is CPP Right for Me? + - Exam Guide Walkthrough + - Study Habits Guide + - Practice Exam Sample + - Case Study Question Type + - Validators + - name: Cloud Concepts + sections: + - What is Cloud Computing? + - Evolution of Cloud Hosting + - What is Amazon? + - What is AWS? + - What is a Cloud Service Provider? + - Landscape of CSPs + - Gartner Magic Quadrant for Cloud + - Common Cloud Services + - AWS Technology Overview + - AWS Services Preview + - Evolution of Computing + - Types of Cloud Computing + - Cloud Computing Deployment Models + - Deployment Model Use Cases + - name: Getting Started + sections: + - Create an AWS Account + - Create IAM User + - AWS Region Selector + - Overbilling Story + - AWS Budgets + - AWS Free Tier + - Billing Alarm + - Turning on MFA + - name: Digital Transformation + sections: + - Innovation Waves + - Burning Platform + - Digital Transformation Checklist + - Evolution of Computing Power + - Amazon Braket + - name: The Benefits of Cloud + sections: + - The Benefits of the Cloud + - The Seven Advantages of Cloud + - name: AWS Global Infrastructure + sections: + - AWS Global Infrastructure Overview + - AWS Global Infrastructure Follow Along + - Regions + - Regional vs Global Services + - Availability Zones (AZs) + - Regions and AZ Visualized + - Selecting Regions and Azs Follow Along + - Fault Tolerance + - AWS Global Network + - Points of Presence (PoP) + - Tier 1 + - AWS Services using PoPs + - AWS Direct Connect + - Direct Connect Locations + - AWS Local Zones + - Wavelength Zones + - Data Residency + - AWS for Government + - GovCloud + - AWS in China + - AWS in China Follow Along + - Sustainability + - Sustainability Follow Along + - AWS Ground Station + - AWS Outposts + - name: Cloud Architecture + sections: + - Cloud Architecture Terminologies + - High Availability + - High Scalability + - High Elasticity + - Fault Tolerance + - High Durability + - Business Continuity Plan + - Disaster Recovery Options + - RTO Visualized + - RPO Visualized + - Architectural diagram example + - HA Follow Along + - name: Management and Development Tools + sections: + - AWS API + - AWS API Follow Along + - AWS Management Console + - AWS Management Console Follow Along + - Service Console + - Service Console Follow Along + - AWS Account ID + - AWS Account ID Follow Along + - AWS Tools for PowerShell + - AWS Tools for Powershell Follow Along + - Amazon Resource Names + - ARN Follow Along + - AWS CLI + - AWS CLI Follow Along + - AWS SDK + - AWS SDK Follow Along + - AWS CloudShell + - Infrastructure as Code + - CloudFormation + - CloudFormation Follow Along + - CDK + - AWS Toolkit for VSCode + - Access Keys + - Access Keys Follow Along + - AWS Documentation + - AWS Documentation Follow Along + - name: Shared Responsibility Model + sections: + - Introduction to Shared Responsibility Model + - AWS Shared Responsibility Model + - Types of Cloud Responsibilities + - Shared Responsibility for Compute + - Shared Responsibility Model Alternate + - Shared Responsibility Model Architecture + - name: Compute + sections: + - EC2 Overview + - VMs, Containers and Serverless + - Compute Follow Along + - High Performance Computing (HPC) + - HPC Follow Along + - Edge and Hybrid + - Edge Computing Follow Along + - Cost & Capacity Management + - name: Storage + sections: + - Types of Storage Services + - Introduction to S3 + - S3 Storage Classes + - AWS Snow Family + - Storage Services + - S3 Follow Along + - EBS Follow Along + - EFS Follow Along + - Snow Family Follow Along + - name: Databases + sections: + - What is a database? + - What is a data warehouse? + - What is a key value store? + - What is a document database? + - NoSQL Database Services + - Relational Database Services + - Other Database Services + - DynamoDB Follow Along + - RDS Follow Along + - Redshift Follow Along + - name: Networking + sections: + - Cloud-Native Networking Services + - Enterprise/Hybrid Networking Services + - Virtual Private Cloud (VPC) & Subnets + - Security Groups vs NACLs + - Security Groups vs NACLs Follow Along + - AWS CloudFront + - name: EC2 + sections: + - Introduction to EC2 + - EC2 Instance Families + - EC2 Instance Types + - Dedicated Host vs Dedicated Instances + - EC2 Tenancy + - Launch an EC2, SSH and Sessions Manager + - Elastic IP + - AMI and Launch Template + - Launch an ASG + - Launch an ALB + - Cleanup + - name: EC2 Pricing Models + sections: + - Ec2 Pricing Models + - On Demand + - Reserved Instances + - RI Attributes + - Regional and Zonal RI + - RI Limits + - Capacity Reservations + - Standard vs Convertible RI + - RI Marketplace + - Spot Instances + - Dedicated Instances + - Savings Plan + - name: Identity + sections: + - Zero-Trust Model + - Zero-Trust on AWS + - Zero-Trust on AWS with Third-Parties + - Directory Service + - Active Directory + - Identity Providers + - Single-Sign-On + - LDAP + - Multi-Factor-Authenication + - Security Keys + - AWS IAM + - Anatomy of an IAM Policy + - IAM Policies Follow Along + - Principle-of-Least-Privilege + - AWS Account Root User + - AWS SSO + - name: Application Integration + sections: + - Introduction to Application Integration + - Queueing and SQS + - Streaming and Kinesis + - Pub-Sub and SNS + - API Gateway and Amazon API Gateway + - State Machines and AWS Step Functions + - Event Bus and Amazon Event Bridge + - Application Integration Services + - name: 'Containers' + sections: + - VMs vs Containers + - What are Microservices? + - Kuberenetes + - Docker + - Podman + - Container Services + - name: 'Governance' + sections: + - Organizations and Accounts + - AWS Control Tower + - AWS Config + - AWS Config FollowAlong + - AWS Quick Starts + - AWS QuickStarts Follow Along + - Tagging + - Tag Name Follow Along + - Resource Groups + - Resource Groups Follow Along + - Business Centric Services + - name: 'Provisioning' + sections: + - Provisioning Services + - AWS Elastic Beanstalk + - AWS Elastic Beanstalk Follow Along + - name: 'Serverless Services' + sections: + - What is Serverless? + - Serverless Services + - name: 'Windows on AWS' + sections: + - Windows on AWS + - EC2 Windows Follow Along + - AWS License Manager + - name: 'Logging' + sections: + - Logging Services + - AWS Cloud Trail + - CloudWatch Alarm + - mastering attached flashcard + - Anatomy of an Alarm + - Log Streams and Events + - Log Insights + - CloudWatch Metrics + - AWS CloudTrail Follow Along + - name: 'ML and AI and Big Data' + sections: + - Introduction to ML and Al + - Al and ML Services + - BigData and Analytics Services + - Amazon QuickSight + - QuickSight Follow Along + - Machine Learning and Al Services - Extended + - Generative Al + - ML and DL Frameworks and Tools + - Apache MXNet + - What is Intel + - Intel Xeon Scalable and Intel Gaudi + - What is a GPU + - What is CUDA + - name: 'AWS Well-Architected Framework' + sections: + - AWS Well-Architected Framework + - General Defintions + - On Architecture + - Amazon Leadership Principles + - General Design Principles + - Anatomy of a Pillar + - Operational Excellence + - Security + - Reliability + - Performance Efficiency + - Cost Optimization + - AWS Well-Architected-Tool + - Well-Architected Framework and Tool- Follow Along + - AWS Architecture Center + - name: 'TCO and Migration' + sections: + - Total Cost of Ownership (TCO) + - CAPEX vS OPEX + - Shifting-IT Personnel + - AWS Pricing Calculator + - AWS Pricing Calculator Follow Along + - Migration Evaluator + - VM Import Export + - Database Migration Service + - Cloud Adoption Framework + - name: 'Billing, Pricing and Support' + sections: + - AWS Free Services + - AWS Support Plans + - Technical Account Manager + - AWS Support Follow Along + - AWS Marketplace + - AWS Marketplace Follow Along + - Consolidated Billing + - Consolidated Billing Volume Discounts + - AWS Trusted Advisor + - AWS Trusted Advisor Follow Along + - SLAS + - AWS SLA Examples + - AWS SLA Follow Along + - Service Health Dashboard + - AWS Personal Health Dashboard + - AWS Abuse + - AWS Abuse Report Follow Along + - AWS Free Tier + - AWS Credits + - AWS Partner Network + - AWS Budgets + - AWS Budget Reports + - AWS Cost and Usage Reports + - Cost Allocation Tags + - Billing Alarms + - AWS Cost Explorer + - AWS Cost Explorer Follow Along + - Programmatic Pricing APls + - AWS Savings Plan Follow Along + - name: 'Security' + sections: + - Defense-In-Depth + - CIA Triad + - Vulnerabilities + - Encryption + - Cyphers + - Cryptographic Keys + - Hashing and Salting + - Digital Signatures and Signing + - In-Transit vs At-Rest Encryption + - Compliance Programs + - AWS Compliance Programs Follow Along + - Pen Testing + - Pen Testing Follow Along + - AWS Artifact + - AWS Artifact Follow Along + - AWS Inspector + - DDoS + - AWS Shield + - AWS Guard Duty + - AWS Guard Duty Follow Along + - AWS VPN + - AWS WAF + - AWS WAF Follow Along + - Hardware Security Module + - AWS KMS + - AWS KMS Follow Along + - CloudHSM + - name: 'Variation Study' + sections: + - Know Your Initialisms + - AWS Config AWS AppConfig + - SNS vs SQS + - SNS vs SES vs PinPoint vs Workmail + - Amazon Inspector vs AWS Trusted Advisor + - Connect Named Services + - Elastic Transcoder vs MediaConvert + - AWS Artifact vs Amazon Inspector + - ELB variants + - name: 'Next Steps' + sections: + - Booking Your Exam diff --git a/mkdocs.yml b/mkdocs.yml index df68f23..17a21a8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -77,6 +77,361 @@ nav: - Prompt Engineering Best Practices: ai/prompt_engineering_best_practices.md - Prompt Engineering for Improved Performance: ai/prompt_engineering_for_improved_performance.md + + - AWS: + - Certified Cloud Practitioner: + - Introduction: + - Meet Your Instructor: aws/certified_cloud_practitioner/01_introduction/01_meet_your_instructor.md + - Is CPP Right for Me?: aws/certified_cloud_practitioner/01_introduction/02_is_cpp_right_for_me.md + - Exam Guide Walkthrough: aws/certified_cloud_practitioner/01_introduction/03_exam_guide_walkthrough.md + - Study Habits Guide: aws/certified_cloud_practitioner/01_introduction/04_study_habits_guide.md + - Practice Exam Sample: aws/certified_cloud_practitioner/01_introduction/05_practice_exam_sample.md + - Case Study Question Type: aws/certified_cloud_practitioner/01_introduction/06_case_study_question_type.md + - Validators: aws/certified_cloud_practitioner/01_introduction/07_validators.md + - Cloud Concepts: + - What is Cloud Computing?: aws/certified_cloud_practitioner/02_cloud_concepts/01_what_is_cloud_computing.md + - Evolution of Cloud Hosting: aws/certified_cloud_practitioner/02_cloud_concepts/02_evolution_of_cloud_hosting.md + - What is Amazon?: aws/certified_cloud_practitioner/02_cloud_concepts/03_what_is_amazon.md + - What is AWS?: aws/certified_cloud_practitioner/02_cloud_concepts/04_what_is_aws.md + - What is a Cloud Service Provider?: aws/certified_cloud_practitioner/02_cloud_concepts/05_what_is_a_cloud_service_provider.md + - Landscape of CSPs: aws/certified_cloud_practitioner/02_cloud_concepts/06_landscape_of_csps.md + - Gartner Magic Quadrant for Cloud: aws/certified_cloud_practitioner/02_cloud_concepts/07_gartner_magic_quadrant_for_cloud.md + - Common Cloud Services: aws/certified_cloud_practitioner/02_cloud_concepts/08_common_cloud_services.md + - AWS Technology Overview: aws/certified_cloud_practitioner/02_cloud_concepts/09_aws_technology_overview.md + - AWS Services Preview: aws/certified_cloud_practitioner/02_cloud_concepts/10_aws_services_preview.md + - Evolution of Computing: aws/certified_cloud_practitioner/02_cloud_concepts/11_evolution_of_computing.md + - Types of Cloud Computing: aws/certified_cloud_practitioner/02_cloud_concepts/12_types_of_cloud_computing.md + - Cloud Computing Deployment Models: aws/certified_cloud_practitioner/02_cloud_concepts/13_cloud_computing_deployment_models.md + - Deployment Model Use Cases: aws/certified_cloud_practitioner/02_cloud_concepts/14_deployment_model_use_cases.md + - Getting Started: + - Create an AWS Account: aws/certified_cloud_practitioner/03_getting_started/01_create_an_aws_account.md + - Create IAM User: aws/certified_cloud_practitioner/03_getting_started/02_create_iam_user.md + - AWS Region Selector: aws/certified_cloud_practitioner/03_getting_started/03_aws_region_selector.md + - Overbilling Story: aws/certified_cloud_practitioner/03_getting_started/04_overbilling_story.md + - AWS Budgets: aws/certified_cloud_practitioner/03_getting_started/05_aws_budgets.md + - AWS Free Tier: aws/certified_cloud_practitioner/03_getting_started/06_aws_free_tier.md + - Billing Alarm: aws/certified_cloud_practitioner/03_getting_started/07_billing_alarm.md + - Turning on MFA: aws/certified_cloud_practitioner/03_getting_started/08_turning_on_mfa.md + - Digital Transformation: + - Innovation Waves: aws/certified_cloud_practitioner/04_digital_transformation/01_innovation_waves.md + - Burning Platform: aws/certified_cloud_practitioner/04_digital_transformation/02_burning_platform.md + - Digital Transformation Checklist: aws/certified_cloud_practitioner/04_digital_transformation/03_digital_transformation_checklist.md + - Evolution of Computing Power: aws/certified_cloud_practitioner/04_digital_transformation/04_evolution_of_computing_power.md + - Amazon Braket: aws/certified_cloud_practitioner/04_digital_transformation/05_amazon_braket.md + - The Benefits of Cloud: + - The Benefits of the Cloud: aws/certified_cloud_practitioner/05_the_benefits_of_cloud/01_the_benefits_of_the_cloud.md + - The Seven Advantages of Cloud: aws/certified_cloud_practitioner/05_the_benefits_of_cloud/02_the_seven_advantages_of_cloud.md + - AWS Global Infrastructure: + - AWS Global Infrastructure Overview: aws/certified_cloud_practitioner/06_aws_global_infrastructure/01_aws_global_infrastructure_overview.md + - AWS Global Infrastructure Follow Along: aws/certified_cloud_practitioner/06_aws_global_infrastructure/02_aws_global_infrastructure_follow_along.md + - Regions: aws/certified_cloud_practitioner/06_aws_global_infrastructure/03_regions.md + - Regional vs Global Services: aws/certified_cloud_practitioner/06_aws_global_infrastructure/04_regional_vs_global_services.md + - Availability Zones (AZs): aws/certified_cloud_practitioner/06_aws_global_infrastructure/05_availability_zones_azs.md + - Regions and AZ Visualized: aws/certified_cloud_practitioner/06_aws_global_infrastructure/06_regions_and_az_visualized.md + - Selecting Regions and Azs Follow Along: aws/certified_cloud_practitioner/06_aws_global_infrastructure/07_selecting_regions_and_azs_follow_along.md + - Fault Tolerance: aws/certified_cloud_practitioner/06_aws_global_infrastructure/08_fault_tolerance.md + - AWS Global Network: aws/certified_cloud_practitioner/06_aws_global_infrastructure/09_aws_global_network.md + - Points of Presence (PoP): aws/certified_cloud_practitioner/06_aws_global_infrastructure/10_points_of_presence_pop.md + - Tier 1: aws/certified_cloud_practitioner/06_aws_global_infrastructure/11_tier_1.md + - AWS Services using PoPs: aws/certified_cloud_practitioner/06_aws_global_infrastructure/12_aws_services_using_pops.md + - AWS Direct Connect: aws/certified_cloud_practitioner/06_aws_global_infrastructure/13_aws_direct_connect.md + - Direct Connect Locations: aws/certified_cloud_practitioner/06_aws_global_infrastructure/14_direct_connect_locations.md + - AWS Local Zones: aws/certified_cloud_practitioner/06_aws_global_infrastructure/15_aws_local_zones.md + - Wavelength Zones: aws/certified_cloud_practitioner/06_aws_global_infrastructure/16_wavelength_zones.md + - Data Residency: aws/certified_cloud_practitioner/06_aws_global_infrastructure/17_data_residency.md + - AWS for Government: aws/certified_cloud_practitioner/06_aws_global_infrastructure/18_aws_for_government.md + - GovCloud: aws/certified_cloud_practitioner/06_aws_global_infrastructure/19_govcloud.md + - AWS in China: aws/certified_cloud_practitioner/06_aws_global_infrastructure/20_aws_in_china.md + - AWS in China Follow Along: aws/certified_cloud_practitioner/06_aws_global_infrastructure/21_aws_in_china_follow_along.md + - Sustainability: aws/certified_cloud_practitioner/06_aws_global_infrastructure/22_sustainability.md + - Sustainability Follow Along: aws/certified_cloud_practitioner/06_aws_global_infrastructure/23_sustainability_follow_along.md + - AWS Ground Station: aws/certified_cloud_practitioner/06_aws_global_infrastructure/24_aws_ground_station.md + - AWS Outposts: aws/certified_cloud_practitioner/06_aws_global_infrastructure/25_aws_outposts.md + - Cloud Architecture: + - Cloud Architecture Terminologies: aws/certified_cloud_practitioner/07_cloud_architecture/01_cloud_architecture_terminologies.md + - High Availability: aws/certified_cloud_practitioner/07_cloud_architecture/02_high_availability.md + - High Scalability: aws/certified_cloud_practitioner/07_cloud_architecture/03_high_scalability.md + - High Elasticity: aws/certified_cloud_practitioner/07_cloud_architecture/04_high_elasticity.md + - Fault Tolerance: aws/certified_cloud_practitioner/07_cloud_architecture/05_fault_tolerance.md + - High Durability: aws/certified_cloud_practitioner/07_cloud_architecture/06_high_durability.md + - Business Continuity Plan: aws/certified_cloud_practitioner/07_cloud_architecture/07_business_continuity_plan.md + - Disaster Recovery Options: aws/certified_cloud_practitioner/07_cloud_architecture/08_disaster_recovery_options.md + - RTO Visualized: aws/certified_cloud_practitioner/07_cloud_architecture/09_rto_visualized.md + - RPO Visualized: aws/certified_cloud_practitioner/07_cloud_architecture/10_rpo_visualized.md + - Architectural diagram example: aws/certified_cloud_practitioner/07_cloud_architecture/11_architectural_diagram_example.md + - HA Follow Along: aws/certified_cloud_practitioner/07_cloud_architecture/12_ha_follow_along.md + - Management and Development Tools: + - AWS API: aws/certified_cloud_practitioner/08_management_and_development_tools/01_aws_api.md + - AWS API Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/02_aws_api_follow_along.md + - AWS Management Console: aws/certified_cloud_practitioner/08_management_and_development_tools/03_aws_management_console.md + - AWS Management Console Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/04_aws_management_console_follow_along.md + - Service Console: aws/certified_cloud_practitioner/08_management_and_development_tools/05_service_console.md + - Service Console Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/06_service_console_follow_along.md + - AWS Account ID: aws/certified_cloud_practitioner/08_management_and_development_tools/07_aws_account_id.md + - AWS Account ID Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/08_aws_account_id_follow_along.md + - AWS Tools for PowerShell: aws/certified_cloud_practitioner/08_management_and_development_tools/09_aws_tools_for_powershell.md + - AWS Tools for Powershell Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/10_aws_tools_for_powershell_follow_along.md + - Amazon Resource Names: aws/certified_cloud_practitioner/08_management_and_development_tools/11_amazon_resource_names.md + - ARN Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/12_arn_follow_along.md + - AWS CLI: aws/certified_cloud_practitioner/08_management_and_development_tools/13_aws_cli.md + - AWS CLI Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/14_aws_cli_follow_along.md + - AWS SDK: aws/certified_cloud_practitioner/08_management_and_development_tools/15_aws_sdk.md + - AWS SDK Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/16_aws_sdk_follow_along.md + - AWS CloudShell: aws/certified_cloud_practitioner/08_management_and_development_tools/17_aws_cloudshell.md + - Infrastructure as Code: aws/certified_cloud_practitioner/08_management_and_development_tools/18_infrastructure_as_code.md + - CloudFormation: aws/certified_cloud_practitioner/08_management_and_development_tools/19_cloudformation.md + - CloudFormation Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/20_cloudformation_follow_along.md + - CDK: aws/certified_cloud_practitioner/08_management_and_development_tools/21_cdk.md + - AWS Toolkit for VSCode: aws/certified_cloud_practitioner/08_management_and_development_tools/22_aws_toolkit_for_vscode.md + - Access Keys: aws/certified_cloud_practitioner/08_management_and_development_tools/23_access_keys.md + - Access Keys Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/24_access_keys_follow_along.md + - AWS Documentation: aws/certified_cloud_practitioner/08_management_and_development_tools/25_aws_documentation.md + - AWS Documentation Follow Along: aws/certified_cloud_practitioner/08_management_and_development_tools/26_aws_documentation_follow_along.md + - Shared Responsibility Model: + - Introduction to Shared Responsibility Model: aws/certified_cloud_practitioner/09_shared_responsibility_model/01_introduction_to_shared_responsibility_model.md + - AWS Shared Responsibility Model: aws/certified_cloud_practitioner/09_shared_responsibility_model/02_aws_shared_responsibility_model.md + - Types of Cloud Responsibilities: aws/certified_cloud_practitioner/09_shared_responsibility_model/03_types_of_cloud_responsibilities.md + - Shared Responsibility for Compute: aws/certified_cloud_practitioner/09_shared_responsibility_model/04_shared_responsibility_for_compute.md + - Shared Responsibility Model Alternate: aws/certified_cloud_practitioner/09_shared_responsibility_model/05_shared_responsibility_model_alternate.md + - Shared Responsibility Model Architecture: aws/certified_cloud_practitioner/09_shared_responsibility_model/06_shared_responsibility_model_architecture.md + - Compute: + - EC2 Overview: aws/certified_cloud_practitioner/10_compute/01_ec2_overview.md + - VMs, Containers and Serverless: aws/certified_cloud_practitioner/10_compute/02_vms_containers_and_serverless.md + - Compute Follow Along: aws/certified_cloud_practitioner/10_compute/03_compute_follow_along.md + - High Performance Computing (HPC): aws/certified_cloud_practitioner/10_compute/04_high_performance_computing_hpc.md + - HPC Follow Along: aws/certified_cloud_practitioner/10_compute/05_hpc_follow_along.md + - Edge and Hybrid: aws/certified_cloud_practitioner/10_compute/06_edge_and_hybrid.md + - Edge Computing Follow Along: aws/certified_cloud_practitioner/10_compute/07_edge_computing_follow_along.md + - Cost & Capacity Management: aws/certified_cloud_practitioner/10_compute/08_cost_capacity_management.md + - Storage: + - Types of Storage Services: aws/certified_cloud_practitioner/11_storage/01_types_of_storage_services.md + - Introduction to S3: aws/certified_cloud_practitioner/11_storage/02_introduction_to_s3.md + - S3 Storage Classes: aws/certified_cloud_practitioner/11_storage/03_s3_storage_classes.md + - AWS Snow Family: aws/certified_cloud_practitioner/11_storage/04_aws_snow_family.md + - Storage Services: aws/certified_cloud_practitioner/11_storage/05_storage_services.md + - S3 Follow Along: aws/certified_cloud_practitioner/11_storage/06_s3_follow_along.md + - EBS Follow Along: aws/certified_cloud_practitioner/11_storage/07_ebs_follow_along.md + - EFS Follow Along: aws/certified_cloud_practitioner/11_storage/08_efs_follow_along.md + - Snow Family Follow Along: aws/certified_cloud_practitioner/11_storage/09_snow_family_follow_along.md + - Databases: + - What is a database?: aws/certified_cloud_practitioner/12_databases/01_what_is_a_database.md + - What is a data warehouse?: aws/certified_cloud_practitioner/12_databases/02_what_is_a_data_warehouse.md + - What is a key value store?: aws/certified_cloud_practitioner/12_databases/03_what_is_a_key_value_store.md + - What is a document database?: aws/certified_cloud_practitioner/12_databases/04_what_is_a_document_database.md + - NoSQL Database Services: aws/certified_cloud_practitioner/12_databases/05_nosql_database_services.md + - Relational Database Services: aws/certified_cloud_practitioner/12_databases/06_relational_database_services.md + - Other Database Services: aws/certified_cloud_practitioner/12_databases/07_other_database_services.md + - DynamoDB Follow Along: aws/certified_cloud_practitioner/12_databases/08_dynamodb_follow_along.md + - RDS Follow Along: aws/certified_cloud_practitioner/12_databases/09_rds_follow_along.md + - Redshift Follow Along: aws/certified_cloud_practitioner/12_databases/10_redshift_follow_along.md + - Networking: + - Cloud-Native Networking Services: aws/certified_cloud_practitioner/13_networking/01_cloud_native_networking_services.md + - Enterprise/Hybrid Networking Services: aws/certified_cloud_practitioner/13_networking/02_enterprise_hybrid_networking_services.md + - Virtual Private Cloud (VPC) & Subnets: aws/certified_cloud_practitioner/13_networking/03_virtual_private_cloud_vpc_subnets.md + - Security Groups vs NACLs: aws/certified_cloud_practitioner/13_networking/04_security_groups_vs_nacls.md + - Security Groups vs NACLs Follow Along: aws/certified_cloud_practitioner/13_networking/05_security_groups_vs_nacls_follow_along.md + - AWS CloudFront: aws/certified_cloud_practitioner/13_networking/06_aws_cloudfront.md + - EC2: + - Introduction to EC2: aws/certified_cloud_practitioner/14_ec2/01_introduction_to_ec2.md + - EC2 Instance Families: aws/certified_cloud_practitioner/14_ec2/02_ec2_instance_families.md + - EC2 Instance Types: aws/certified_cloud_practitioner/14_ec2/03_ec2_instance_types.md + - Dedicated Host vs Dedicated Instances: aws/certified_cloud_practitioner/14_ec2/04_dedicated_host_vs_dedicated_instances.md + - EC2 Tenancy: aws/certified_cloud_practitioner/14_ec2/05_ec2_tenancy.md + - Launch an EC2, SSH and Sessions Manager: aws/certified_cloud_practitioner/14_ec2/06_launch_an_ec2_ssh_and_sessions_manager.md + - Elastic IP: aws/certified_cloud_practitioner/14_ec2/07_elastic_ip.md + - AMI and Launch Template: aws/certified_cloud_practitioner/14_ec2/08_ami_and_launch_template.md + - Launch an ASG: aws/certified_cloud_practitioner/14_ec2/09_launch_an_asg.md + - Launch an ALB: aws/certified_cloud_practitioner/14_ec2/10_launch_an_alb.md + - Cleanup: aws/certified_cloud_practitioner/14_ec2/11_cleanup.md + - EC2 Pricing Models: + - Ec2 Pricing Models: aws/certified_cloud_practitioner/15_ec2_pricing_models/01_ec2_pricing_models.md + - On Demand: aws/certified_cloud_practitioner/15_ec2_pricing_models/02_on_demand.md + - Reserved Instances: aws/certified_cloud_practitioner/15_ec2_pricing_models/03_reserved_instances.md + - RI Attributes: aws/certified_cloud_practitioner/15_ec2_pricing_models/04_ri_attributes.md + - Regional and Zonal RI: aws/certified_cloud_practitioner/15_ec2_pricing_models/05_regional_and_zonal_ri.md + - RI Limits: aws/certified_cloud_practitioner/15_ec2_pricing_models/06_ri_limits.md + - Capacity Reservations: aws/certified_cloud_practitioner/15_ec2_pricing_models/07_capacity_reservations.md + - Standard vs Convertible RI: aws/certified_cloud_practitioner/15_ec2_pricing_models/08_standard_vs_convertible_ri.md + - RI Marketplace: aws/certified_cloud_practitioner/15_ec2_pricing_models/09_ri_marketplace.md + - Spot Instances: aws/certified_cloud_practitioner/15_ec2_pricing_models/10_spot_instances.md + - Dedicated Instances: aws/certified_cloud_practitioner/15_ec2_pricing_models/11_dedicated_instances.md + - Savings Plan: aws/certified_cloud_practitioner/15_ec2_pricing_models/12_savings_plan.md + - Identity: + - Zero-Trust Model: aws/certified_cloud_practitioner/16_identity/01_zero_trust_model.md + - Zero-Trust on AWS: aws/certified_cloud_practitioner/16_identity/02_zero_trust_on_aws.md + - Zero-Trust on AWS with Third-Parties: aws/certified_cloud_practitioner/16_identity/03_zero_trust_on_aws_with_third_parties.md + - Directory Service: aws/certified_cloud_practitioner/16_identity/04_directory_service.md + - Active Directory: aws/certified_cloud_practitioner/16_identity/05_active_directory.md + - Identity Providers: aws/certified_cloud_practitioner/16_identity/06_identity_providers.md + - Single-Sign-On: aws/certified_cloud_practitioner/16_identity/07_single_sign_on.md + - LDAP: aws/certified_cloud_practitioner/16_identity/08_ldap.md + - Multi-Factor-Authenication: aws/certified_cloud_practitioner/16_identity/09_multi_factor_authenication.md + - Security Keys: aws/certified_cloud_practitioner/16_identity/10_security_keys.md + - AWS IAM: aws/certified_cloud_practitioner/16_identity/11_aws_iam.md + - Anatomy of an IAM Policy: aws/certified_cloud_practitioner/16_identity/12_anatomy_of_an_iam_policy.md + - IAM Policies Follow Along: aws/certified_cloud_practitioner/16_identity/13_iam_policies_follow_along.md + - Principle-of-Least-Privilege: aws/certified_cloud_practitioner/16_identity/14_principle_of_least_privilege.md + - AWS Account Root User: aws/certified_cloud_practitioner/16_identity/15_aws_account_root_user.md + - AWS SSO: aws/certified_cloud_practitioner/16_identity/16_aws_sso.md + - Application Integration: + - Introduction to Application Integration: aws/certified_cloud_practitioner/17_application_integration/01_introduction_to_application_integration.md + - Queueing and SQS: aws/certified_cloud_practitioner/17_application_integration/02_queueing_and_sqs.md + - Streaming and Kinesis: aws/certified_cloud_practitioner/17_application_integration/03_streaming_and_kinesis.md + - Pub-Sub and SNS: aws/certified_cloud_practitioner/17_application_integration/04_pub_sub_and_sns.md + - API Gateway and Amazon API Gateway: aws/certified_cloud_practitioner/17_application_integration/05_api_gateway_and_amazon_api_gateway.md + - State Machines and AWS Step Functions: aws/certified_cloud_practitioner/17_application_integration/06_state_machines_and_aws_step_functions.md + - Event Bus and Amazon Event Bridge: aws/certified_cloud_practitioner/17_application_integration/07_event_bus_and_amazon_event_bridge.md + - Application Integration Services: aws/certified_cloud_practitioner/17_application_integration/08_application_integration_services.md + - Containers: + - VMs vs Containers: aws/certified_cloud_practitioner/18_containers/01_vms_vs_containers.md + - What are Microservices?: aws/certified_cloud_practitioner/18_containers/02_what_are_microservices.md + - Kuberenetes: aws/certified_cloud_practitioner/18_containers/03_kuberenetes.md + - Docker: aws/certified_cloud_practitioner/18_containers/04_docker.md + - Podman: aws/certified_cloud_practitioner/18_containers/05_podman.md + - Container Services: aws/certified_cloud_practitioner/18_containers/06_container_services.md + - Governance: + - Organizations and Accounts: aws/certified_cloud_practitioner/19_governance/01_organizations_and_accounts.md + - AWS Control Tower: aws/certified_cloud_practitioner/19_governance/02_aws_control_tower.md + - AWS Config: aws/certified_cloud_practitioner/19_governance/03_aws_config.md + - AWS Config FollowAlong: aws/certified_cloud_practitioner/19_governance/04_aws_config_followalong.md + - AWS Quick Starts: aws/certified_cloud_practitioner/19_governance/05_aws_quick_starts.md + - AWS QuickStarts Follow Along: aws/certified_cloud_practitioner/19_governance/06_aws_quickstarts_follow_along.md + - Tagging: aws/certified_cloud_practitioner/19_governance/07_tagging.md + - Tag Name Follow Along: aws/certified_cloud_practitioner/19_governance/08_tag_name_follow_along.md + - Resource Groups: aws/certified_cloud_practitioner/19_governance/09_resource_groups.md + - Resource Groups Follow Along: aws/certified_cloud_practitioner/19_governance/10_resource_groups_follow_along.md + - Business Centric Services: aws/certified_cloud_practitioner/19_governance/11_business_centric_services.md + - Provisioning: + - Provisioning Services: aws/certified_cloud_practitioner/20_provisioning/01_provisioning_services.md + - AWS Elastic Beanstalk: aws/certified_cloud_practitioner/20_provisioning/02_aws_elastic_beanstalk.md + - AWS Elastic Beanstalk Follow Along: aws/certified_cloud_practitioner/20_provisioning/03_aws_elastic_beanstalk_follow_along.md + - Serverless Services: + - What is Serverless?: aws/certified_cloud_practitioner/21_serverless_services/01_what_is_serverless.md + - Serverless Services: aws/certified_cloud_practitioner/21_serverless_services/02_serverless_services.md + - Windows on AWS: + - Windows on AWS: aws/certified_cloud_practitioner/22_windows_on_aws/01_windows_on_aws.md + - EC2 Windows Follow Along: aws/certified_cloud_practitioner/22_windows_on_aws/02_ec2_windows_follow_along.md + - AWS License Manager: aws/certified_cloud_practitioner/22_windows_on_aws/03_aws_license_manager.md + - Logging: + - Logging Services: aws/certified_cloud_practitioner/23_logging/01_logging_services.md + - AWS Cloud Trail: aws/certified_cloud_practitioner/23_logging/02_aws_cloud_trail.md + - CloudWatch Alarm: aws/certified_cloud_practitioner/23_logging/03_cloudwatch_alarm.md + - mastering attached flashcard: aws/certified_cloud_practitioner/23_logging/04_mastering_attached_flashcard.md + - Anatomy of an Alarm: aws/certified_cloud_practitioner/23_logging/05_anatomy_of_an_alarm.md + - Log Streams and Events: aws/certified_cloud_practitioner/23_logging/06_log_streams_and_events.md + - Log Insights: aws/certified_cloud_practitioner/23_logging/07_log_insights.md + - CloudWatch Metrics: aws/certified_cloud_practitioner/23_logging/08_cloudwatch_metrics.md + - AWS CloudTrail Follow Along: aws/certified_cloud_practitioner/23_logging/09_aws_cloudtrail_follow_along.md + - ML and AI and Big Data: + - Introduction to ML and Al: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/01_introduction_to_ml_and_al.md + - Al and ML Services: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/02_al_and_ml_services.md + - BigData and Analytics Services: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/03_bigdata_and_analytics_services.md + - Amazon QuickSight: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/04_amazon_quicksight.md + - QuickSight Follow Along: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/05_quicksight_follow_along.md + - Machine Learning and Al Services - Extended: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/06_machine_learning_and_al_services_extended.md + - Generative Al: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/07_generative_al.md + - ML and DL Frameworks and Tools: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/08_ml_and_dl_frameworks_and_tools.md + - Apache MXNet: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/09_apache_mxnet.md + - What is Intel: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/10_what_is_intel.md + - Intel Xeon Scalable and Intel Gaudi: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/11_intel_xeon_scalable_and_intel_gaudi.md + - What is a GPU: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/12_what_is_a_gpu.md + - What is CUDA: aws/certified_cloud_practitioner/24_ml_and_ai_and_big_data/13_what_is_cuda.md + - AWS Well-Architected Framework: + - AWS Well-Architected Framework: aws/certified_cloud_practitioner/25_aws_well_architected_framework/01_aws_well_architected_framework.md + - General Defintions: aws/certified_cloud_practitioner/25_aws_well_architected_framework/02_general_defintions.md + - On Architecture: aws/certified_cloud_practitioner/25_aws_well_architected_framework/03_on_architecture.md + - Amazon Leadership Principles: aws/certified_cloud_practitioner/25_aws_well_architected_framework/04_amazon_leadership_principles.md + - General Design Principles: aws/certified_cloud_practitioner/25_aws_well_architected_framework/05_general_design_principles.md + - Anatomy of a Pillar: aws/certified_cloud_practitioner/25_aws_well_architected_framework/06_anatomy_of_a_pillar.md + - Operational Excellence: aws/certified_cloud_practitioner/25_aws_well_architected_framework/07_operational_excellence.md + - Security: aws/certified_cloud_practitioner/25_aws_well_architected_framework/08_security.md + - Reliability: aws/certified_cloud_practitioner/25_aws_well_architected_framework/09_reliability.md + - Performance Efficiency: aws/certified_cloud_practitioner/25_aws_well_architected_framework/10_performance_efficiency.md + - Cost Optimization: aws/certified_cloud_practitioner/25_aws_well_architected_framework/11_cost_optimization.md + - AWS Well-Architected-Tool: aws/certified_cloud_practitioner/25_aws_well_architected_framework/12_aws_well_architected_tool.md + - Well-Architected Framework and Tool- Follow Along: aws/certified_cloud_practitioner/25_aws_well_architected_framework/13_well_architected_framework_and_tool_follow_along.md + - AWS Architecture Center: aws/certified_cloud_practitioner/25_aws_well_architected_framework/14_aws_architecture_center.md + - TCO and Migration: + - Total Cost of Ownership (TCO): aws/certified_cloud_practitioner/26_tco_and_migration/01_total_cost_of_ownership_tco.md + - CAPEX vS OPEX: aws/certified_cloud_practitioner/26_tco_and_migration/02_capex_vs_opex.md + - Shifting-IT Personnel: aws/certified_cloud_practitioner/26_tco_and_migration/03_shifting_it_personnel.md + - AWS Pricing Calculator: aws/certified_cloud_practitioner/26_tco_and_migration/04_aws_pricing_calculator.md + - AWS Pricing Calculator Follow Along: aws/certified_cloud_practitioner/26_tco_and_migration/05_aws_pricing_calculator_follow_along.md + - Migration Evaluator: aws/certified_cloud_practitioner/26_tco_and_migration/06_migration_evaluator.md + - VM Import Export: aws/certified_cloud_practitioner/26_tco_and_migration/07_vm_import_export.md + - Database Migration Service: aws/certified_cloud_practitioner/26_tco_and_migration/08_database_migration_service.md + - Cloud Adoption Framework: aws/certified_cloud_practitioner/26_tco_and_migration/09_cloud_adoption_framework.md + - Billing, Pricing and Support: + - AWS Free Services: aws/certified_cloud_practitioner/27_billing_pricing_and_support/01_aws_free_services.md + - AWS Support Plans: aws/certified_cloud_practitioner/27_billing_pricing_and_support/02_aws_support_plans.md + - Technical Account Manager: aws/certified_cloud_practitioner/27_billing_pricing_and_support/03_technical_account_manager.md + - AWS Support Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/04_aws_support_follow_along.md + - AWS Marketplace: aws/certified_cloud_practitioner/27_billing_pricing_and_support/05_aws_marketplace.md + - AWS Marketplace Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/06_aws_marketplace_follow_along.md + - Consolidated Billing: aws/certified_cloud_practitioner/27_billing_pricing_and_support/07_consolidated_billing.md + - Consolidated Billing Volume Discounts: aws/certified_cloud_practitioner/27_billing_pricing_and_support/08_consolidated_billing_volume_discounts.md + - AWS Trusted Advisor: aws/certified_cloud_practitioner/27_billing_pricing_and_support/09_aws_trusted_advisor.md + - AWS Trusted Advisor Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/10_aws_trusted_advisor_follow_along.md + - SLAS: aws/certified_cloud_practitioner/27_billing_pricing_and_support/11_slas.md + - AWS SLA Examples: aws/certified_cloud_practitioner/27_billing_pricing_and_support/12_aws_sla_examples.md + - AWS SLA Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/13_aws_sla_follow_along.md + - Service Health Dashboard: aws/certified_cloud_practitioner/27_billing_pricing_and_support/14_service_health_dashboard.md + - AWS Personal Health Dashboard: aws/certified_cloud_practitioner/27_billing_pricing_and_support/15_aws_personal_health_dashboard.md + - AWS Abuse: aws/certified_cloud_practitioner/27_billing_pricing_and_support/16_aws_abuse.md + - AWS Abuse Report Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/17_aws_abuse_report_follow_along.md + - AWS Free Tier: aws/certified_cloud_practitioner/27_billing_pricing_and_support/18_aws_free_tier.md + - AWS Credits: aws/certified_cloud_practitioner/27_billing_pricing_and_support/19_aws_credits.md + - AWS Partner Network: aws/certified_cloud_practitioner/27_billing_pricing_and_support/20_aws_partner_network.md + - AWS Budgets: aws/certified_cloud_practitioner/27_billing_pricing_and_support/21_aws_budgets.md + - AWS Budget Reports: aws/certified_cloud_practitioner/27_billing_pricing_and_support/22_aws_budget_reports.md + - AWS Cost and Usage Reports: aws/certified_cloud_practitioner/27_billing_pricing_and_support/23_aws_cost_and_usage_reports.md + - Cost Allocation Tags: aws/certified_cloud_practitioner/27_billing_pricing_and_support/24_cost_allocation_tags.md + - Billing Alarms: aws/certified_cloud_practitioner/27_billing_pricing_and_support/25_billing_alarms.md + - AWS Cost Explorer: aws/certified_cloud_practitioner/27_billing_pricing_and_support/26_aws_cost_explorer.md + - AWS Cost Explorer Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/27_aws_cost_explorer_follow_along.md + - Programmatic Pricing APls: aws/certified_cloud_practitioner/27_billing_pricing_and_support/28_programmatic_pricing_apls.md + - AWS Savings Plan Follow Along: aws/certified_cloud_practitioner/27_billing_pricing_and_support/29_aws_savings_plan_follow_along.md + - Security: + - Defense-In-Depth: aws/certified_cloud_practitioner/28_security/01_defense_in_depth.md + - CIA Triad: aws/certified_cloud_practitioner/28_security/02_cia_triad.md + - Vulnerabilities: aws/certified_cloud_practitioner/28_security/03_vulnerabilities.md + - Encryption: aws/certified_cloud_practitioner/28_security/04_encryption.md + - Cyphers: aws/certified_cloud_practitioner/28_security/05_cyphers.md + - Cryptographic Keys: aws/certified_cloud_practitioner/28_security/06_cryptographic_keys.md + - Hashing and Salting: aws/certified_cloud_practitioner/28_security/07_hashing_and_salting.md + - Digital Signatures and Signing: aws/certified_cloud_practitioner/28_security/08_digital_signatures_and_signing.md + - In-Transit vs At-Rest Encryption: aws/certified_cloud_practitioner/28_security/09_in_transit_vs_at_rest_encryption.md + - Compliance Programs: aws/certified_cloud_practitioner/28_security/10_compliance_programs.md + - AWS Compliance Programs Follow Along: aws/certified_cloud_practitioner/28_security/11_aws_compliance_programs_follow_along.md + - Pen Testing: aws/certified_cloud_practitioner/28_security/12_pen_testing.md + - Pen Testing Follow Along: aws/certified_cloud_practitioner/28_security/13_pen_testing_follow_along.md + - AWS Artifact: aws/certified_cloud_practitioner/28_security/14_aws_artifact.md + - AWS Artifact Follow Along: aws/certified_cloud_practitioner/28_security/15_aws_artifact_follow_along.md + - AWS Inspector: aws/certified_cloud_practitioner/28_security/16_aws_inspector.md + - DDoS: aws/certified_cloud_practitioner/28_security/17_ddos.md + - AWS Shield: aws/certified_cloud_practitioner/28_security/18_aws_shield.md + - AWS Guard Duty: aws/certified_cloud_practitioner/28_security/19_aws_guard_duty.md + - AWS Guard Duty Follow Along: aws/certified_cloud_practitioner/28_security/20_aws_guard_duty_follow_along.md + - AWS VPN: aws/certified_cloud_practitioner/28_security/21_aws_vpn.md + - AWS WAF: aws/certified_cloud_practitioner/28_security/22_aws_waf.md + - AWS WAF Follow Along: aws/certified_cloud_practitioner/28_security/23_aws_waf_follow_along.md + - Hardware Security Module: aws/certified_cloud_practitioner/28_security/24_hardware_security_module.md + - AWS KMS: aws/certified_cloud_practitioner/28_security/25_aws_kms.md + - AWS KMS Follow Along: aws/certified_cloud_practitioner/28_security/26_aws_kms_follow_along.md + - CloudHSM: aws/certified_cloud_practitioner/28_security/27_cloudhsm.md + - Variation Study: + - Know Your Initialisms: aws/certified_cloud_practitioner/29_variation_study/01_know_your_initialisms.md + - AWS Config AWS AppConfig: aws/certified_cloud_practitioner/29_variation_study/02_aws_config_aws_appconfig.md + - SNS vs SQS: aws/certified_cloud_practitioner/29_variation_study/03_sns_vs_sqs.md + - SNS vs SES vs PinPoint vs Workmail: aws/certified_cloud_practitioner/29_variation_study/04_sns_vs_ses_vs_pinpoint_vs_workmail.md + - Amazon Inspector vs AWS Trusted Advisor: aws/certified_cloud_practitioner/29_variation_study/05_amazon_inspector_vs_aws_trusted_advisor.md + - Connect Named Services: aws/certified_cloud_practitioner/29_variation_study/06_connect_named_services.md + - Elastic Transcoder vs MediaConvert: aws/certified_cloud_practitioner/29_variation_study/07_elastic_transcoder_vs_mediaconvert.md + - AWS Artifact vs Amazon Inspector: aws/certified_cloud_practitioner/29_variation_study/08_aws_artifact_vs_amazon_inspector.md + - ELB variants: aws/certified_cloud_practitioner/29_variation_study/09_elb_variants.md + - Next Steps: + - Booking Your Exam: aws/certified_cloud_practitioner/30_next_steps/01_booking_your_exam.md + - Git / GitHub: - Git Tips: git/git.md - Ultimate Git Course: