You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/website/content/docs/commands/users/create.mdx

40 lines
883 B

---
layout: docs
page_title: users create - Command
description: >-
The "users create" command create a new user resource.
---
# users create
Command: `users create`
The `users create` command lets you create a new user.
## Example
This example creates a user `prodops` with the description `User for ProdOps`:
```shell-session
$ boundary users create -name prodops -description "User for ProdOps"
```
## Usage
<CodeBlockConfig hideClipboard>
```shell-session
$ boundary users create [options] [args]
```
</CodeBlockConfig>
### Command options
- `-description=<string>` - The description to assign the user.
- `-name=<string>` - The name to assign to the user.
- `-scope-id=<string>` - The scope you want to create the user in.
The default is `global`.
You can also specify the scope using the **BOUNDARY_SCOPE_ID** environment variable.
@include 'cmd-option-note.mdx'