doc: clarify token helper intro (#9058)

This commit is contained in:
Jason O'Donnell 2020-05-21 10:11:32 -04:00 committed by GitHub
parent 5376e87360
commit 4b2a72c616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -9,7 +9,15 @@ description: >-
# Token Helpers
The Vault CLI provides a built in tool for authenticating to any of the enabled auth backends. By default the Vault CLI will take the generated token after a successful authentication and store it on disk in the `~/.vault-token` file. This functionality can change in Vault via the use of a token helper. A token helper is an external program that Vault calls to save, retrieve or erase a saved token. The token helper could be a very simple script or a more complex program depending on your needs. The interface to the external token helper is extremely simple.
A token helper is an external program that Vault calls to save, retrieve or erase
a saved token. The token helper could be a very simple script or a more complex
program depending on your needs. The interface to the external token helper is
extremely simple.
By default the Vault CLI provides a built in tool for authenticating with any
of the enabled authentication backends. Once authenticated, the CLI will store
the generated token on disk in the `~/.vault-token` file. By using a token helper,
this default functionality can be changed.
## Configuration