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...