2.3 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | Tokens | docs-concepts-tokens | Tokens are a core authentication method in Vault. Child tokens, token-based revocation, and more. |
Tokens
Tokens are the core method for authentication within Vault. Tokens can be used directly or authentication backends can be used to dynamically generate tokens based on external identities.
If you've gone through the getting started guide, you probably noticed that
vault server -dev
(or vault init
for a non-dev server) outputs an
initial "root token." This is the first method of authentication for Vault.
It is also the only authentication backend that cannot be disabled.
As stated in the authentication concepts, all external authentication mechanisms such as GitHub map down to dynamically created tokens. These tokens have all the same properties as a normal manually created token.
On this page, we'll show you how to create and manage tokens.
Token Creation
Tokens are created via the API or using vault token-create
from the CLI.
This will create a new token that is a child of the currently authenticated
token. As a child, the new token will automatically be revoked if the parent
is revoked.
If you're logged in as root, you can create an orphan token by
specifying the -orphan
flag. An orphan token has no parent, and therefore
when your token is revoked, it will not revoke the orphan.
Metadata associated with the token with -metadata
is used to annotate
the token with information that is added to the audit log.
Finally, the -policy
flag can be used to set the policies associated
with the token. Learn more about policies on the
policies concepts page.
Token Time-To-Live and Leases
Every non-root token has a time-to-live (TTL) associated with it. After the TTL is up, the token will no longer function. In addition to no longer functioning, Vault will revoke it.
When a token is revoked, any leases associated with the token will be revoked
as well, even if the TTLs on the individual leases are not yet up. For example,
if a user requests AWS access keys, after the token expires the AWS access keys
will also be revoked. In order to avoid your token being revoked, the vault token-renew
command should be periodically used to renew the token.