AWS Cloud Developer: Security Flashcards

1
Q

What is PII

A

Personally identifiable information

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

What does cloud security protect?

A

Data

The application that accesses the data

Servers that serve the data

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

AWS Shield

A

AWS Shield is a managed DDoS (or Distributed Denial of Service) protection service that safeguards web applications running on AWS.

AWS Shield is a service that you get “out of the box”, it is always running (automatically) and is a part of the free standard tier. If you want to use some of the more advanced features, you’ll have to utilize the paid tier.

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

AWS WAF

A

AWS WAF (or AWS Web Application Firewall) provides a firewall that protects your web applications.

WAF can stop common web attacks (SQL injections, Cross site scripting) by reviewing the data being sent to your application and stopping well-known attacks.

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

What are firewalls?

A

A network security mechanism that monitors and controlls incoming and outgoing traffic, based on pre-set security rules.

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

IAM

A

Identity & Access Management (IAM) is an AWS service that allows us to configure who can access our AWS account, services, or even applications running in our account. IAM is a global service and is automatically available across ALL regions.

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

Least privileged access

A

users only have acces to what the need to have access to and no more.

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

What are root level accounts

A

Full access to everything in an acount

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

How to secure your root account?

A

MFA - mutlifactor authentication

Dont use root credentials to sign into everyday accoutns

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

4 IAM security concepts

A

User
IAM Group
IAM Role
Policy

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

IAM user

A

An entity (person/service) accesing account. Has username and access credentials

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

IAM group

A

Collection of users

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

IAM role

A

An identity with permisions and priviliges not associated with users or groups. Roles can be attached to a user or a user can assume a role temporarily to perform a specific task

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

Policy

A

A way of defining granular permisions which can be attached to users, groups or roles.

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

How are AWS policies created

A

as JSON Objects

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

How are EC2 security groups different from IAM security groups?

A

EC2 security groups are not a part of IAM. They are associated with EC@ instances and act as built-in firewalls