---
title: "User: Creating a New User With an AWS CLI Command"
slug: "using-aws-cli-commands-to-create-a-user"
updated: 2026-02-09T17:01:57Z
published: 2026-02-09T17:01:57Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wasabi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# User: Creating a New User With an AWS CLI Command

You can use this AWS CLI command to create a user:

```powershell
aws iam create-user --user-name Bob
```

Note that you are referencing the IAM endpoint rather than the S3 endpoint. An example of the command is:

```powershell
$ aws iam create-user --user-name mikeotestuser--endpoint-url=https://iam.wasabisys.com
{
    "User": {
        "UserName": "mikeotestuser", 
        "Path": "/", 
        "CreateDate": "2019-09-18T16:04:37.031Z", 
        "UserId": "1PIFRFBITH1515N0TR3AL", 
        "Arn": "arn:aws:iam::100009912345:user/mikeo-test-iam"
    }
}
$
```
