Ad space (banner)
AD

Got the fundamentals? A structured AWS course is a fast way to level up.

Find AWS courses on Udemy

Affiliate link. Costs you nothing extra.

☁️AWS Lessons
Lesson 10 / 41

Creating a User with aws iam create-user

When a new team member needs access, use aws iam create-user. It creates an IAM user.

The syntax is aws iam create-user --user-name name.

Running aws iam create-user --user-name taro creates the user and returns its ARN and creation date.

A common stumble is expecting the new user to be able to do things. A freshly created user has no permissions at all until you attach a policy.

In real work, users are usually placed in groups by role, and permissions are granted to the group rather than to each person individually.

AWS
Try it (type this into the pseudo terminal)
aws iam create-user --user-name taro

🧑‍💻 You can type this command into the AWS pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)