|
| 1 | +## stackit beta intake user create |
| 2 | + |
| 3 | +Creates a new Intake User |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a new Intake User for a specific Intake. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit beta intake user create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a new Intake User with required parameters |
| 17 | + $ stackit beta intake user create --display-name intake-user --intake-id xxx --password "SuperSafepass123\!" |
| 18 | +
|
| 19 | + Create a new Intake User for the dead-letter queue with labels |
| 20 | + $ stackit beta intake user create --display-name dlq-user --intake-id xxx --password "SuperSafepass123\!" --type dead-letter --labels "env=prod" |
| 21 | +``` |
| 22 | + |
| 23 | +### Options |
| 24 | + |
| 25 | +``` |
| 26 | + --description string Description |
| 27 | + --display-name string Display name |
| 28 | + -h, --help Help for "stackit beta intake user create" |
| 29 | + --intake-id string The UUID of the Intake to associate the user with |
| 30 | + --labels stringToString Labels in key=value format, separated by commas (default []) |
| 31 | + --password string Password for the user. Must contain lower, upper, number, and special characters (min 12 chars) |
| 32 | + --type string Type of user. One of 'intake' (default) or 'dead-letter' (default "intake") |
| 33 | +``` |
| 34 | + |
| 35 | +### Options inherited from parent commands |
| 36 | + |
| 37 | +``` |
| 38 | + -y, --assume-yes If set, skips all confirmation prompts |
| 39 | + --async If set, runs the command asynchronously |
| 40 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 41 | + -p, --project-id string Project ID |
| 42 | + --region string Target region for region-specific requests |
| 43 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 44 | +``` |
| 45 | + |
| 46 | +### SEE ALSO |
| 47 | + |
| 48 | +* [stackit beta intake user](./stackit_beta_intake_user.md) - Provides functionality for Intake Users |
| 49 | + |
0 commit comments