mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
77 lines
2.4 KiB
Markdown
Generated
77 lines
2.4 KiB
Markdown
Generated
<!-- DO NOT EDIT | GENERATED CONTENT -->
|
|
# server create-admin-user
|
|
|
|
Create a new admin user with the given username, email and password and adds it to every organization.
|
|
|
|
## Usage
|
|
|
|
```console
|
|
coder server create-admin-user [flags]
|
|
```
|
|
|
|
## Options
|
|
|
|
### --postgres-url
|
|
|
|
| | |
|
|
|-------------|---------------------------------------|
|
|
| Type | <code>string</code> |
|
|
| Environment | <code>$CODER_PG_CONNECTION_URL</code> |
|
|
|
|
URL of a PostgreSQL database. If empty, the built-in PostgreSQL deployment will be used (Coder must not be already running in this case).
|
|
|
|
### --postgres-connection-auth
|
|
|
|
| | |
|
|
|-------------|----------------------------------------|
|
|
| Type | <code>password\|awsiamrds</code> |
|
|
| Environment | <code>$CODER_PG_CONNECTION_AUTH</code> |
|
|
| Default | <code>password</code> |
|
|
|
|
Type of auth to use when connecting to postgres.
|
|
|
|
### --ssh-keygen-algorithm
|
|
|
|
| | |
|
|
|-------------|------------------------------------------|
|
|
| Type | <code>string</code> |
|
|
| Environment | <code>$CODER_SSH_KEYGEN_ALGORITHM</code> |
|
|
| Default | <code>ed25519</code> |
|
|
|
|
The algorithm to use for generating ssh keys. Accepted values are "ed25519", "ecdsa", or "rsa4096".
|
|
|
|
### --username
|
|
|
|
| | |
|
|
|-------------|------------------------------|
|
|
| Type | <code>string</code> |
|
|
| Environment | <code>$CODER_USERNAME</code> |
|
|
|
|
The username of the new user. If not specified, you will be prompted via stdin.
|
|
|
|
### --email
|
|
|
|
| | |
|
|
|-------------|---------------------------|
|
|
| Type | <code>string</code> |
|
|
| Environment | <code>$CODER_EMAIL</code> |
|
|
|
|
The email of the new user. If not specified, you will be prompted via stdin.
|
|
|
|
### --password
|
|
|
|
| | |
|
|
|-------------|------------------------------|
|
|
| Type | <code>string</code> |
|
|
| Environment | <code>$CODER_PASSWORD</code> |
|
|
|
|
The password of the new user. If not specified, you will be prompted via stdin.
|
|
|
|
### --raw-url
|
|
|
|
| | |
|
|
|------|-------------------|
|
|
| Type | <code>bool</code> |
|
|
|
|
Output the raw connection URL instead of a psql command.
|