PSScriptAnalyzer Release

MIT License Forks Stargazers Contributors Issues LinkedIn

LEARNING CLF-C01: AWS Certified Cloud Practitioner

AWS Cloud Practitioner Essentials

Explore the docs »
Main Page - Code Page - Report Bug - Request Feature

Summary

TABLE OF CONTENT
  1. About The Project
  2. Getting Started
  3. Usage
  4. Roadmap
  5. Course Objectives
  6. Course Prerequisites
  7. Module 1: Cloud Concepts
  8. Module 2: Security and Compliance
  9. Module 3: Technology
  10. Module 2: Billing and Pricing
  11. AWS CLI
  12. License
  13. Contact
  14. Acknowledgments

About Project

This project aims to help students or professionals to learn the main concepts of aws-cloud-practitioner-essentials exam

(back to top)

Getting Started

This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.

Prerequisites

This is an example of how to list things you need to use the software and how to install them.

Installation

Clone the repo

git clone https://github.com/marcossilvestrini/learning-aws-cloud-practitioner-essentials.git

Usage

Use this repository for get learning about aws-cloud-practitioner-essentials exam

(back to top)

Roadmap

(back to top)

Course objectives

https://explore.skillbuilder.aws/learn/course/9449/exam-prep-aws-certified-cloud-practitioner-clf-c01

(back to aws objective)

(back to top)

Course Prerequisites

We recommend that attendees of this course have the following knowledge:

(back to course prerequisites)

(back to top)

Module 1: Cloud Concepts

Define the AWS Cloud and its value proposition

Define the benefits of the AWS Cloud

Identify aspects of AWS Cloud economics

Explain the different cloud architecture design principles

(back to module 1)

(back to top)

Module 2: Security and Compliance

Define the AWS shared responsibility model

Define AWS Cloud security and compliance concepts

Identify AWS access management capabilities

Identify resources for security support

(back to module 2)

(back to top)

Module 3: Technology

Define methods of deploying and operating in the AWS Cloud

Define the AWS global infrastructure

Identify the core AWS services

Identify resources for technology support

(back to module 3)

(back to top)

Module 4: Billing and Pricing

Compare and contrast the various pricing models for AWS (for example, On-Demand Instances, Reserved Instances, and Spot Instance pricing)

Recognize the various account structures in relation to AWS billing and pricing

Identify resources available for billing support

(back to module 4)

(back to top)

AWS CLI

Install

Windows

# https://learn.microsoft.com/en-us/windows/package-manager/winget/
winget install -e --id Amazon.AWSCLI

Linux

cd /tmp || exit
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
./aws/install
rm awscliv2.zip

Important Commands

# Get version
aws --version



# Create EC2 instance
aws ec2 run-instances \
  --image-id ami-xxxxxxxx \
  --count 1 \
  --instance-type t2.micro \
  --key-name MyKeyPair \
  --security-group-ids sg-903004f8 \
  --subnet-id subnet-6e7f829e

(back to awscli)

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Contact

Marcos Silvestrini - marcos.silvestrini@gmail.com
Twitter

Project Link: https://github.com/marcossilvestrini/learning-aws-cloud-practitioner-essentials

(back to top)

Acknowledgments

AWS Exams code

Exam map

(back to top)