Unit 2 (Modules 4-5) Flashcards

(38 cards)

1
Q

Amazon GuardDuty

A

A threat-detection service for your AWS account using machine learning that continuously monitors for malicious activity and unauthorized behavior.

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

Internet Gateway

A

Bridge for connecting your subnet to the Internet. Subnets are isolated from the internet by default. The Internet Gateway must be explicitly configured. (Used for public subnets.)

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

IAM Policy

A

A document that defines which resources can be accessed and the level of access to each resource.

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

Encryption of data in Transit

A

The concept of encrypting data while it is moving across the network – either between internal resources like an EC2 and a database or between the client and the web server. This encryption protects the data from eavesdroppers during the transmission.

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

Actions that can only be completed by the AWS account root user.

A

1) Updating the account root user password
2) Changing the AWS account email address.
3) Closing the AWS account.
4) Changing the AWS Support plan
5) Restoring an IAM user’s permissions
6) Changing account settings (for example, contact information, allowed Regions)

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

Amazon Route 53

A

Amazon’s Domain Name System (DNS) web service (resolves DNS names to IP addresses).

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

AWS Site-to-Site VPN

A

A service that connects your on-premises network (like your company’s data center or office network) to your AWS Virtual Private Cloud (VPC) over an encrypted VPN connection using the public internet.

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

Amazon Macie

A

A security service that uses machine learning to automatically discover, classify, and protect sensitive data stored in Amazon S3s. Amazon Macie recognizes sensitive data such as personally identifiable information (PII) or intellectual property.

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

AWS Service Catalog

A

Enables organizations to create and manage catalogs of IT services that are approved for use. (In this way, you can control what AWS resources your company’s employees have access to – can be controlled by region)

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

AWS Certificate Manager

A

A service that provisions, manages, and automatically renews SSL/TLS certificates to secure your websites and applications.

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

IAM Group

A

A collection of IAM users that are granted identical authorization. Users can be in multiple groups. Groups do not nest. There are no default groups; a user needs to be explicitly added to each group they need to be added to.

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

AWS Shield Standard

A

Provides DDOS protection for CloudFront, Route 53, and Global Accelerator. Enabled at no additional cost.

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

IAM Role

A

Useful mechanism to grant a set of permissions for making AWS service requests. Useful for an EC2 to assume a role that grants it permission to access a particular S3. In this way, user credentials don’t need to be stored on the server.

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

VPC Peering

A

A networking connection between two VPCs that allows them to communicate with each other as if they were part of the same network. (A typical use case is connecting different AWS Regions or accounts.)

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

Security Groups

A

Applied to instances to allow/deny traffic to that instance.

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

SCP

A

Service Control Policies - AWS Organizations integrate with IAM with service control policies which can restrict which accounts have access to which services and API actions. SCPs essentially limit the permissions that are available in an account that is part of an organization. SCPs can be assigned to individual accounts or to Organizational Units (OUs) which are the interior nodes of the AWS Organizations tree.

17
Q

AWS Shield Advanced

A

Provides DDOS protection for many services, including EC2s and Elastic IPs. Protects against large, sophisticated attacks. Optional paid service.

18
Q

Elastic Network Interface (ENI)

A

Is a virtual network card for EC2 instances, specifies the IP address(es) for that instance

19
Q

AWS KMS

A

AWS Key Management Service - Enables you to create and manage encryption keys. Enables you to control the use of encryption across AWS services and in your applications.

20
Q

Encryption of data at Rest

A

The concept of encrypting stored data (in a database or in files on a disk) so that if the storage is breached, the thief cannot read the data. Configuring encryption at rest is the responsibility of the customer. Encryption key management is provided by AWS KMS.

21
Q

Amazon Inspector

A

An automated security assessment service that helps improve the security and compliance of applications that are deployed on AWS. Amazon Inspector automatically assesses applications for exposure, vulnerabilities, and deviations from best practices.

22
Q

AWS Artifact

A

A service that provides on-demand access to AWS compliance reports and security and privacy documentation.

23
Q

IAM User

A

A person or application that can authenticate with an AWS account.

24
Q

AWS Direct Connect

A

An alternative to Site-to-Site VPN that instead uses a dedicated, private network connection between your network and AWS. Can provide faster, more consistent performance than sending traffic across the public internet.

25
AWS Transit Gateway
A central hub that connects multiple VPCs and on-premises networks in a scalable and simplified way. Think of it as a cloud router for your AWS environment.
26
Amazon Cognito
Adds user sign-up, sign-in, and access control to your web and mobile applications.
27
Network Access Control Lists (ACLs)
Applied to a subnet to allow/deny traffic entering/leaving the subnet.
28
IAM Best Practices
1) Do not use the AWS account root user except when performing actions that can only be performed by the root user. 2) Enable multi-factor authentication (MFA) and enable a password policy for all users. 3) Use AWS CloudTrail to view all account activity for the last 90 days. 4) Enable a billing report, such as the AWS Cost and Usage Report.
29
Authorization
The process of verifying permissions.
30
Amazon VPC
Enables you to provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define. A VPC is for a single region.
31
VPC Endpoints
A private connection between your VPC and an AWS service in another VPC that doesn’t require traffic to go over the public internet. Essentially, it allows resources inside your VPC (like EC2 instances) to securely access AWS services privately. (More restrictive than VPC peering as the access is by resource, not to the entire other VPC.)
32
Route Table
Specifies the rules on how traffic (data packets) will be routed based upon their destination IP address.
33
AWS Config
A service that continuously monitors and records your AWS resource configurations and changes to help with compliance and auditing.
34
Network Address Translation (NAT) Gateway
Similar to an internet gateway but allows outbound traffic only. Used for private subnets.
35
Principle of Least Privilege
Grant users the minimum set of permissions that they require to do their jobs. Grant additional permissions as necessary. Following “Principle of Least Privilege” helps to avoid inadvertent security gaps and helps to prevent mistakes.
36
Authentication
The process of verifying identity.
37
VPC Sharing
VPC sharing enables customers to share subnets with other AWS accounts in the same AWS Organization.
38
Subnet
* Range of IP addresses that divide a VPC * Belongs to a single Availability Zone