Set up authentication with tokens
Authentication tokens, also known as JSON Web Tokens (JWT), are a method for authenticating Splunk platform users into the Splunk platform. Tokens let you provide access to environments without having to provide the standard types of credentials. Instead of providing a username and password, you provide the token. As a Splunk platform user, you can use tokens to make calls to Representational State Transfer (REST) endpoints and use the Splunk CLI on Splunk platform instances. Tokens are credentials, so you must closely guard them, and not share them with anyone who does not explicitly need access to Splunk platform services.
Authentication tokens are different than other types of tokens you can configure in Splunk Enterprise on forwarders and indexers for authenticated communication between those components, or HTTP Event Collector, though their function is similar. For instructions to configure tokens on forwarders and indexers, see Control forwarder access in the Forwarder Manual.
As a Splunk platform administrator, you can control the following authentication token properties:
- Who owns the token. A token is associated with a username on the instance
- Token audience. A label that indicates the token's purpose
- How long a token lasts
- When its validity begins. It does not have to become valid immediately when you create it
- Whether or not it is enabled, at any time
You can also delete the token if you no longer want the user to have access through the token. If you disable or remove a token, users of that token lose access to the instance unless they have standard credentials such as the username and password.
Supported Splunk deployment types and authentication schemes for tokens
You can create and assign tokens to various user types that can access a Splunk platform instance, based on the type of authentication system that the instance uses. At this time, tokens are supported in the following deployment types and authentication schemes:
Supported deployment types
- Single-instance, on search heads only
- Search head cluster nodes
- Splunk Cloud instances that use authentication schemes that appear in the "Supported authentication schemes" section later in this topic
Supported authentication schemes
- Native authentication
- Lightweight Directory Access Protocol (LDAP) authentication
- Single Sign-On (SSO) schemes that use Security Assertion Markup Language (SAML) as a protocol. There is support for the following SAML identity providers (IdPs) for external authentication:
- Azure, through a scripted authentication extension
- Okta, through a scripted authentication extension
- Any other identity provider (IdP) that natively supports Attribute Query Requests (AQR)
In the context of SAML, an AQR is a request by an entity to an IdP, either by or on behalf of a user, for the purpose of getting more information about that user. In this case, the Splunk platform queries the IdP for information about the user that logs into Splunk Web. If an IdP supports AQR, it provides the additional attributes that the Splunk platform requires to complete the login process.
To learn how to configure a scripted authentication extension for a supported SAML IdP that does not support AQR, see Configure authentication extensions for SAML tokens.
Unsupported deployment types
- Indexers
- Indexer cluster nodes
- Universal forwarders
- Splunk Cloud instances that do not meet the "Supported deployment types" criteria
Unsupported authentication schemes
- Proxy SSO
Prerequisites for activating tokens
Before activating token authentication, confirm that you have performed the following tasks:
- Enable Transport Layer Security (TLS)/SSL on your Splunk platform instance. See About securing Splunk Enterprise with SSL for details.
- Confirm that you have enabled app key value store (KV Store). By default, KV store is enabled on search heads. See About app key value store in the Admin Manual for more information.
Prerequisites for creating and configuring tokens
Before you create and configure tokens, confirm that you have performed the following tasks:
- Logged in to the Splunk platform as a user that is either an administrator level or holds a role with at least one of the following Splunk platform capabilities:
edit_tokens_settings
, which turns token authentication on or offedit_tokens_all
, which lets you create, view, and manage tokens for any user on the instanceedit_tokens_own
, which lets you create, view, and manage tokens for yourself
- Completed all of the prerequisites for activating authentication tokens
- Enabled token authentication
Information on the "list_*" capabilities for tokens
If you have been assigned a role that includes only the following capabilities, you can view tokens, but cannot create them, or enable and disable token authentication:
- The
list_tokens_all
capability lets you see all tokens on the instance. - The
list_tokens_own
capability lets you see your own tokens.
The edit_tokens_*
capabilities include the ability to view tokens, as provided by the list_tokens_*
capabilities.
How authentication tokens work
When you create a token, the Splunk platform picks an ID for the token. The token ID references the token information, which the platform stores securely in a KV store collection.
When you use tokens, you must provide the token with each request. If you use the Splunk CLI, you must supply the token as part of the command or use an environment variable that the CLI picks up. If the Splunk platform uses its native authentication scheme, it does not cache authentication details.
When you present a token as part of a REST request or CLI command, the Splunk platform authentication system does the following:
- It checks to see if token authentication is enabled.
- It processes the token that it receives by validating its signature.
- If checks whether or not the token has expired, or if its validity has not yet started.
- If confirms that the token is available and has not been deleted.
- It checks whether or not the token is enabled.
- It confirms that the user that is associated with the token is authorized to use it.
If all checks pass, it authenticates the user and lets the submitted operation complete.
Enable, create, manage, and use tokens
See the following topics in this chapter for additional information on how to work with authentication tokens:
Configure users with the CLI | Enable or disable token authentication |
This documentation applies to the following versions of Splunk® Enterprise: 8.0.0, 8.0.1, 8.0.2, 8.0.3, 8.0.4, 8.0.5, 8.0.6, 8.0.7, 8.0.8, 8.0.9, 8.0.10
Feedback submitted, thanks!