mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 03:15:42 +03:00
* sectionless files plus acl section * alloc section * config, deployment sections * job section * licence, namespace * node, node-pool * operator * plugin, quota, recommendation * scaling, sentinel, server, service, system, var, volume * Add "ENT" label to left nav for enterprise commands * job tag break into separate folder and files; update options header
37 lines
855 B
Plaintext
37 lines
855 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'nomad acl token list command reference'
|
|
description: |
|
|
The `nomad acl token list` command displays access control list (ACL) tokens.
|
|
---
|
|
|
|
# `nomad acl token list` command reference
|
|
|
|
The `acl token list` command is used to list existing ACL tokens.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad acl token list
|
|
```
|
|
|
|
## List options
|
|
|
|
- `-json` : Output the tokens in their JSON format.
|
|
- `-t` : Format and display the tokens using a Go template.
|
|
|
|
## Examples
|
|
|
|
List all ACL tokens:
|
|
|
|
```shell-session
|
|
$ nomad acl token list
|
|
Name Type Global Accessor ID Expired
|
|
Bootstrap Token management true 9c2d1b3a-cbc3-d9a0-3df9-5a382545a819 false
|
|
example-acl-token client false ef851ca0-b331-da5d-bbeb-7ede8f7c9151 false
|
|
```
|
|
|
|
## General options
|
|
|
|
@include 'general_options_no_namespace.mdx'
|