github.com/adityamillind98/nomad@v0.11.8/website/pages/docs/commands/acl/token-info.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: acl token info' 4 sidebar_title: token info 5 description: > 6 The token info command is used to fetch information about an existing ACL 7 token. 8 --- 9 10 # Command: acl token info 11 12 The `acl token info` command is used to fetch information about an existing ACL token. 13 14 ## Usage 15 16 ```plaintext 17 nomad acl token info <token_accessor_id> 18 ``` 19 20 The `acl token info` command requires an existing token's AccessorID. 21 22 ## General Options 23 24 @include 'general_options.mdx' 25 26 ## Examples 27 28 Fetch information about an existing ACL token: 29 30 ```shell-session 31 $ nomad acl token info d532c40a-30f1-695c-19e5-c35b882b0efd 32 Accessor ID = d532c40a-30f1-695c-19e5-c35b882b0efd 33 Secret ID = 85310d07-9afa-ef53-0933-0c043cd673c7 34 Name = my token 35 Type = client 36 Global = false 37 Policies = [foo bar] 38 Create Time = 2017-09-15 05:04:41.814954949 +0000 UTC 39 Create Index = 8 40 Modify Index = 8 41 ```