mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
cadf1352b4
<!-- If you have used AI to produce some or all of this PR, please ensure you have read our [AI Contribution guidelines](https://coder.com/docs/about/contributing/AI_CONTRIBUTING) before submitting. --> Add support for scoped API tokens in CLI This PR adds CLI support for creating and viewing API tokens with scopes and allow lists. It includes: - New `--scope` and `--allow` flags for the `tokens create` command - A new `tokens view` command to display detailed information about a token - Updated table columns in `tokens list` to show scopes and allow list entries - Updated help text and examples These changes enable users to create tokens with limited permissions through the CLI, similar to the existing functionality in the web UI.
31 lines
820 B
Markdown
Generated
31 lines
820 B
Markdown
Generated
<!-- DO NOT EDIT | GENERATED CONTENT -->
|
|
# tokens view
|
|
|
|
Display detailed information about a token
|
|
|
|
## Usage
|
|
|
|
```console
|
|
coder tokens view [flags] <name|id>
|
|
```
|
|
|
|
## Options
|
|
|
|
### -c, --column
|
|
|
|
| | |
|
|
|---------|---------------------------------------------------------------------------------------|
|
|
| Type | <code>[id\|name\|scopes\|allow list\|last used\|expires at\|created at\|owner]</code> |
|
|
| Default | <code>id,name,scopes,allow list,last used,expires at,created at,owner</code> |
|
|
|
|
Columns to display in table output.
|
|
|
|
### -o, --output
|
|
|
|
| | |
|
|
|---------|--------------------------|
|
|
| Type | <code>table\|json</code> |
|
|
| Default | <code>table</code> |
|
|
|
|
Output format.
|