github.com/smintz/nomad@v0.8.3/website/source/docs/commands/acl/token-info.html.md.erb (about)

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