AWS Technical Essentials Flashcards

1
Q

Definitions

What is cloud computing?

A

On-demand delivery of IT resources via internet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

IAM

Relations between users, groups and policies

A

Groups groups policies. Users can be assigned to groups.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the four main factors you should take into consideration when choosing a Region?

A

Latency, price, service availability and compliance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

AWS Infrastructure

Relationship between Regions, Availability Zones, and data centers?

A

Regions are clusters of Availability Zones. Availability Zones are clusters of data centers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a best practice when securing an AWS root user?

A

Enable multi-factor authentication
Disable or delete the access keys associated with the root user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Compute Services

What compute services are there on AWS?

A

Fundamental level: virtual machines (VM), container services, and serverless.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

AWS EC2

List ec2 instance families

A

General purpose, compute optimized, memory optimized, accelerated computing, storage optimized (high I/O)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

VPC

What is the default Virtual Private CLoud?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Lifecycle of an EC2 instance

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

AWS EC2

What is the difference between stopping and stop-hibernating?

A

Stop-hibernating saves the content of the instance memory (RAM) to the Amazon EBS root volume. Stopping loses the instance memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

AWS EC2

List pricing options for EC2

A

On-Demand; Reserved Instances; Spot Instances

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

AWS EC2

Characteristics of On-Demand pricing

A

No long-term commitments, the price per second is fixed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

AWS EC2

Characteristics of Reserved Instances

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

AWS EC2

Characteristics of Spot Instances

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a container?

A

A container is a standardized unit that packages code and its dependencies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

ECS

What is elastic container service (ECS)?

A

ECS is an end-to-end container orchestration service to spin up new container sand manage them across a cluster of ec2 instances.

17
Q

What is elastic kubernetes service?

A

Kubernetes is a portable, extensible, open source platform for managing containerized workloads and services.

18
Q

Serverless

Two types of serverless services on aws

A

AWS Lambda, AWS Fargate