DEV Community

Cover image for "Create an AWS IAM User: A Quick Beginner’s Guide"
Chidi
Chidi

Posted on • Edited on

"Create an AWS IAM User: A Quick Beginner’s Guide"

🛡️ How to Create an IAM User in AWS (Step-by-Step Guide)

Author: chitech


🧩 Step 1: Sign In to AWS Management Console

  1. Go to https://aws.amazon.com/console/.
  2. Log in with your root or admin credentials.
  3. On the search bar, type IAM and open IAM Dashboard.

step.1

STEP.2

👤 Step 2: Create a New User

  1. In the left sidebar, select Users → Add users.
  2. Enter a Username (e.g., dev-user).
  3. Under Select AWS access type, choose:
    • Password – AWS Management Console access
    • Or, Access key – Programmatic access (for CLI/API use).
  4. Click Next: Permissions.

Create a New User

Create a New User

🔐 Step 3: Assign Permissions

  • You chose “Attach policies directly” — this means you’re giving the user permissions yourself (not through a group).
  • You searched for S3 policies and selected AmazonS3FullAccess.
  • This gives the user full control of all S3 buckets and objects in your account.

Click Next: Tags when done.

Assign Permissions

Step 4: Review and Create User

This step shows the final review before creating your IAM user.

  • The user name is AwsChatchteb-1 — you can choose any username you prefer.
  • The user will log in with a custom password (no reset required).
  • The AmazonS3FullAccess policy is attached, giving full access to all S3 buckets.
  • No tags have been added.

Finally, click “Create user” to complete the setup and add the new user to your AWS account.

Review and Create User

Step 5: Retrieve Password and Finish Setup

If all your settings are correct, you’ll see this confirmation page — “User created successfully.”

  • It shows your sign-in URL, username, and password.
  • You can review the details, but it’s best to download your credentials by clicking “Download .csv file” — this is the only time you can view the password.

Your IAM user is now ready to log in to the AWS Management Console! 🎉

Retrieve Password and Finish Setup

Summary

Creating an AWS IAM user is easy and important for keeping your account secure. Just follow these steps: set up the user, give only the permissions they need, review everything, and save their login info.

Always remember to give the least access necessary to keep your cloud safe. Now your new user can start using AWS securely. Great job! 🎉

Top comments (1)

Collapse
 
victorcompute profile image
Victor

nice write up