Security Token Service Flashcards

1
Q

What does STS stand for?

A

Security Token Service

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

What does STS do?

A

Grants users limited and temporary access to AWS resources.

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

From which sources can users take advantage of STS and gain access to AWS resources?

A

Federation (typically Active Directory)
Federation with Mobile Apps (Facebook, Google, etc)
Cross-account access

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

For Federation logon, which SSO protocol is used?

A

SAML (Security Assertion Markup Language)

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

For Federation logon, what is accessed based on?

A

Active Directory credentials

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

For Active Directory users, is an IAM account required?

A

No

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

For login via federation with mobile apps, which standard is used for login?

A

OpenID

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

What is Cross-account access?

A

Allows users from other AWS accounts access into another AWS account’s resources.

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

What is Federation?

A

Combining, or joining a list of users from one domain, to a list of users in another.

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

What is an identity broker?

A

A service that allows you to take an identity from point A and join it (federate it) to point B.

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

What is an identity store?

A

Service like Active Directoyy, Facebook, Google, etc.

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

What are identities?

A

A user of a service like Facebook, etc.

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

True or false: When using STS, the application bypasses its own authentication mechanism and uses AWS STS?

A

False: The idenity broker is always called first.

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

What must an idenity broker provide AWS STS in order to grant a user AWS resources?

A

An IAM policy
A duration (1 - 36 hours)
permissions to be granted

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

What does STS provide back to the identity broker?

A
  1. Permission to create a token
  2. access key
  3. secret access key
  4. Token
  5. A token duration
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

At a high level, how basically does STS federation work?

A
  1. Employee logs into an application
  2. The application checks with its identity broker
  3. The idenity broker checks with LDAP to validate the user
  4. Idenity broker requests a security token from STS
  5. STS passes the token to the identity broker
  6. idenity broker passes to the application
  7. Application will attempt to access S3
  8. S3 will validate the token is valid against IAM
  9. IAM will approve or deny