AWS IAM - User, Root User & Groups
Ā·
1 min read

š¤ IAM Users
IAM means Identity and Access Management.
Individual identities for people/services to access AWS.
IAM is a global service.
Can have:
Programmatic access (CLI, SDK)
Console access (via username/password)
Should NOT use root userācreate IAM users instead
Permissions assigned directly or via groups
š„ IAM Groups
Collection of IAM users.
Used to assign permissions to multiple users at once.
Easier management than assigning policies to users individually.
- Example:
Admin
group ā hasAdministratorAccess
ā all users in the group inherit it.
- Example: