AcademySky-High Systems: The AWS OdysseySector 2: Digital Identity (IAM)

Identity and Access Management (IAM)

AWS IAM allows you to securely manage access to AWS services and resources.

Creating Users

A User represents a person or service that interacts with AWS. By default, new users have no permissions until you attach a policy to them.

To create a new user:

aws iam create-user --user-name bob

Listing Users

To verify the users that exist in your AWS account:

aws iam list-users

Create the devops-admin user now!

booting...

Mission Control

Create an IAM User

Expected Command

aws iam create-user --user-name devops-admin