github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/operator/root/keyring-list.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: operator root keyring list' 4 description: | 5 List encryption key metadata 6 --- 7 8 # Command: operator root keyring list 9 10 The `operator root keyring list` command lists the currently installed 11 keys. This list returns key metadata and not sensitive key material. 12 13 If ACLs are enabled, this command requires a management token. 14 15 ## Usage 16 17 ```plaintext 18 nomad operator root keyring list [options] 19 ``` 20 21 ## General Options 22 23 @include 'general_options.mdx' 24 25 ## List Options 26 27 - `-verbose`: Enable verbose output 28 29 ## Examples 30 31 ```shell-session 32 $ nomad operator root keyring list 33 Key State Create Time 34 33374156 active 2022-07-11T19:11:07Z 35 8d87a371 inactive 2022-07-11T19:10:37Z 36 37 $ nomad operator root keyring list -verbose 38 Key State Create Time 39 33374156-9f81-b14c-83d4-a2f1f87dbf99 active 2022-07-11T19:11:07Z 40 8d87a371-3594-e1e4-8ae1-3980122b0f25 inactive 2022-07-11T19:10:37Z 41 ```