13_Authorizing Users

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Flashcards about AWS Identity and Access Management (IAM) policies.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

What is the purpose of IAM policies?

Policies define permissions and are used to authorize access to AWS resources.

2
New cards

What does it mean for an IAM policy to be identity-based?

Attached to a user, group, or role, they indicate what the identity is allowed to do.

3
New cards

What does it mean for an IAM policy to be resource-based?

Attached to an AWS resource (e.g., S3 bucket), they define who can access the resource.

4
New cards

How are IAM policies formatted?

JSON documents that define permissions that are allowed or denied.

5
New cards

In IAM policy evaluation, what overrides an explicit allow?

Explicit deny

6
New cards

In IAM policy evaluation, what happens if there isn't an explicit deny and there is an explicit allow?

The permission is granted.

7
New cards

If there is no explicit allow in IAM policy evaluation, what happens to the request?

The request is denied by default.

8
New cards

If two IAM policies contradict each other, which policy is applied?

The most restrictive policy is applied.

9
New cards

If Bob has an identity-based policy allowing get, put, and list on S3 bucket X, but the bucket's resource-based policy only allows get and list, what can Bob do?

Bob cannot put objects into bucket X.

10
New cards

In IAM, what are the two possible states for permissions and policies?

Either allowed or denied.

11
New cards

What is the default behavior for requests in IAM if there is no explicit allow?

All requests are denied.

12
New cards

Which takes precedence in IAM: an explicit allow or an explicit deny?

An explicit deny overrides any explicit allow.