github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/acl/auth-method/list.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: acl auth-method list' 4 description: The auth-method list command is used to list existing ACL Roles. 5 --- 6 7 # Command: acl auth-method list 8 9 The `acl auth-method list` command is used to list existing ACL Auth Methods. 10 11 ## Usage 12 13 ```plaintext 14 nomad acl auth-method list [options] 15 ``` 16 17 ## General Options 18 19 @include 'general_options_no_namespace.mdx' 20 21 ## List Options 22 23 - `-json` : Output the ACL auth-methods in a JSON format. 24 25 - `-t` : Format and display the ACL auth-methods using a Go template. 26 27 ## Examples 28 29 List all ACL Auth Methods: 30 31 ```shell-session 32 $ nomad acl auth-method list 33 Name Type Default 34 example-acl-auth-method OIDC false 35 ```