mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 19:35:41 +03:00
The ACL command docs are now found within a sub-dir like the operator command docs. Updates to the ACL token commands to accommodate token expiry have also been added. The ACL API docs are now found within a sub-dir like the operator API docs. The ACL docs now include the ACL roles endpoint as well as updated ACL token endpoints for token expiration. The configuration section is also updated to accommodate the new ACL and server parameters for the new ACL features.
33 lines
645 B
Plaintext
33 lines
645 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'Commands: acl token delete'
|
|
description: |
|
|
The token create command is used to delete existing ACL tokens.
|
|
---
|
|
|
|
# Command: acl token delete
|
|
|
|
The `acl token delete` command is used to delete existing ACL tokens.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad acl token delete <token_accessor_id>
|
|
```
|
|
|
|
The `acl token delete` command requires an existing token's AccessorID.
|
|
|
|
## General Options
|
|
|
|
@include 'general_options_no_namespace.mdx'
|
|
|
|
## Examples
|
|
|
|
Delete an existing ACL token:
|
|
|
|
```shell-session
|
|
$ nomad acl token delete d532c40a-30f1-695c-19e5-c35b882b0efd
|
|
|
|
Token d532c40a-30f1-695c-19e5-c35b882b0efd successfully deleted
|
|
```
|