IAM (Pt. 2) Flashcards
The basic steps to grant an app temporary access to AWS resources (via user credentials) are:
- __________
- Identity broker always authenticates with LDAP first, then with STS.
- App then gets temporary access to AWS resources allowed by the IAM user’s permissions.
Develop an identity broker to communicate with LDAP and STS.
What does a new user have access to after it’s first created?
Nothing. Access must be granted through policies applied to the specific user or groups the user belongs to.
True or False: A user can log into the AWS console with their access key id and secret access key.
False.
What does STS stand for?
Security Token Service.
Describe the three-step process for using Web Identity Federation.
- Authenticate with identity provider.
- Obtain temporary security credentials.
- Access AWS resource.
When using Active Directory to authenticate to AWS, what are the correct steps performed?
- User navigates to ADFS webserver.
- User enters SSO credentials.
- __________
- User’s browser POSTs SAML assertion to the AWS SAML endpoint, and the AssumeRoleWithSAML API request to get temporary security credentials.
User’s browser receives SAML assertion from AD server.
What is a “root account?” What access does it have?
The account created when first setting up an AWS account. It has complete admin access.
What are the four pillars of IAM?
Users, groups, roles, and policies.
Combining or joining a list of users in IAM with a list of users in Active Directory is an example of __________.
Federation.
The basic steps to grant an app temporary access to AWS resources (by assuming a role) are:
- Develop an identity broker to communicate with LDAP and STS.
- Identity broker always authenticates with LDAP first, then gets an IAM role associated with a user.
- __________
- App uses that IAM role to interact with AWS resources as allowed by the role.
App then authenticates with STS and assumes the IAM role.
New users are assigned __________ and a secret access key when first created.
An access key id.
A user’s access key id and secret access key are used for __________ access to AWS resources.
Programmatic.
What does IAM stand for?
Identity and Access Management.
Which region is IAM in?
The Global region.
The basic steps to grant an app temporary access to AWS resources (by assuming a role) are:
- Develop an identity broker to communicate with LDAP and STS.
- __________
- App then authenticates with STS and assumes the IAM role.
- App uses that IAM role to interact with AWS resources as allowed by the role.
Identity broker always authenticates with LDAP first, then gets an IAM role associated with a user.
True or False: IAM is restricted to specific regions.
False. IAM is universal.
What is Web Identity Federation?
Allows a developer to federate their application from Facebook, Google, or Amazon with their AWS account, allowing their end users to authenticate with one of these Identity Providers and receive temporary AWS credentials.
What is an identity store?
A service that holds information that uniquely describes individuals or machine entities (e.g. - Active Directory, Facebook, Google).