AWS Technical Essentials Flashcards
Definitions
What is cloud computing?
On-demand delivery of IT resources via internet
IAM
Relations between users, groups and policies
Groups groups policies. Users can be assigned to groups.
What are the four main factors you should take into consideration when choosing a Region?
Latency, price, service availability and compliance
AWS Infrastructure
Relationship between Regions, Availability Zones, and data centers?
Regions are clusters of Availability Zones. Availability Zones are clusters of data centers.
What is a best practice when securing an AWS root user?
Enable multi-factor authentication
Disable or delete the access keys associated with the root user
Compute Services
What compute services are there on AWS?
Fundamental level: virtual machines (VM), container services, and serverless.
AWS EC2
List ec2 instance families
General purpose, compute optimized, memory optimized, accelerated computing, storage optimized (high I/O)
VPC
What is the default Virtual Private CLoud?
The default Virtual Private Cloud is a vpc created by AWS by default for each aws user. It is PUBLIC and ACCESSIBLE by the internet.
Lifecycle of an EC2 instance
Pending, running, shutting down, rebooting, terminated, stopping, stopped.
Termianting an instance: Running -> Shutting down -> terminated
Stopping and restarting an instance: Running -> stopping -> stopped -> pending -> running
Launching: pending -> running
https://explore.skillbuilder.aws/files/a/w/aws_prod1_docebosaas_com/1664982000/7XndKhvS02-nsp7ZOT_1kw/tincan/d03722b85f9d2b3a05e4c74bd586ea9b1f52f81a/assets/vlDWmZklEYI0O5VQ_ZLtBm3DALNZxcsgO.png
AWS EC2
What is the difference between stopping and stop-hibernating?
Stop-hibernating saves the content of the instance memory (RAM) to the Amazon EBS root volume. Stopping loses the instance memory.
AWS EC2
List pricing options for EC2
On-Demand; Reserved Instances; Spot Instances
AWS EC2
Characteristics of On-Demand pricing
No long-term commitments, the price per second is fixed.
AWS EC2
Characteristics of Reserved Instances
Significant discount compared to OD pricing.
A discounted hourly rate and an optional capacity reservation for ec2 instances.
Three payment options:
* all upfront
* partial upfront
* no upfront
For each of these options you can select either a 1-year term or 3-year term.
RI instances are associated with an isntance type and an Availability Zone, it is not associated with the specific instance id.
AWS EC2
Characteristics of Spot Instances
Take advantage of unused ec2 capacity in the aws cloud.
Available at up to a 90% discount compared to OD pricing.
How does it work?
* set a limit on how much you would like to pay for the instance hour
* this is compared against the current ec2 price
Spot Instances might be interrupted. AWS gives a 2 minute warning before it interrupts the instance.
What is a container?
A container is a standardized unit that packages code and its dependencies.