AWS - Certified Solutions Architect Associate Flashcards

1
Q

IAM stands for?

IAM & AWS CLI

A

Identity and Access Management

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

Is IAM a Global service?

IAM & AWS CLI

A

Yes, it is

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

What the ‘Root’ account is used for?

IAM & AWS CLI

A

Only for setting up an AWS account for the first time. It is not meant to be shared or used afterwards.

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

Is the ‘Root’ account created by default?

IAM & AWS CLI

A

Yes, it is

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

What is a ‘User’?

IAM & AWS CLI

A

People within your organization

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

What is a ‘Group’?

IAM & AWS CLI

A

It is a collection of users who share permissions over resources

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

Can ‘Groups’ contain other groups?

IAM & AWS CLI

A

No, they cannot

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

Can users belong to multiple groups?

IAM & AWS CLI

A

Yes, they can. Although, it is not necessary for users to belong to a group

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

What are ‘Policies’?

IAM & AWS CLI

A

JSON documents assigned to groups, and they define the set of permissions over resources

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

What is the ‘Least Privilege Principle’?

IAM & AWS CLI

A

Do not give more permissions than a user needs

This is a best practice applied on AWS

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

What are AWS’ credential types?

IAM & AWS CLI

A
  • Access key - Programatic access
  • Password -AWS Management Console access
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What the ‘Account alias’ is used for?

IAM & AWS CLI

A

Customize your AWS account’s sign-in URL

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

What is an ‘In-line’ policy?

IAM & AWS CLI

A

It is a policy only attached to a single user

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

What is ‘Policy inheritance’ on IAM?

IAM & AWS CLI

A

When users in a group acquire the set of permissions defined on the group(s) they belong to

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

An IAM Policy consists of

A
  • Version - “2012-10-17”
  • Id - optional identifier
  • Statement - one or more individual statements
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the elements of an statement in an IAM Policy

IAM & AWS CLI

A
  • Sid - Statement Id (optional)
  • Resource - List of resources the policy applies to
  • Effect - Allow or Deny
  • Action - List of actions the policy allows or deny
  • Principal - List of entities (user/group/role/account) the policy applies to
  • Condition - conditions for when the policy is in effect (optional)