Service tokens
You can manage service tokens in Access Control > Service Tokens (tab).Service token (current)
Service Token (ST) is the current widely-used authentication method for managing secrets. Here’s a few pointers to get you acquainted with it:- Each service token is of the form
st.<id>.<secret>. Send it in theAuthorizationheader asBearer st.<id>.<secret>when calling the Infisical API. - ST supports expiration; it gets deleted automatically upon expiration.
- ST supports provisioning
readand/orwritepermissions broadly applied to all accessible environment(s) and path(s). - ST isn’t editable.
Creating a service token
To create a service token, head to Access Control > Service Tokens as shown below and press Create token.
Now input any token configuration details such as which environment(s) and path(s) you’d like to provision
the token access to. Here’s some guidance for each field:
- Name: A friendly name for the token.
- Scopes: The environment(s) and path(s) the token should have access to.
- Permissions: You can indicate whether or not the token should have
read/writeaccess to the paths. Also, note that Infisical supports glob patterns when defining access scopes to path(s). - Expiration: The time when this token should be rendered inactive.
In the above screenshot, you can see that we’re creating a token with read access to all subfolders at any depth
of the /common path within the development environment of the project; the token expires in 6 months and can be used from any IP address.
For a deeper understanding of service tokens, it’s recommended to read this
guide.
Why is the Infisical API rejecting my service token?
Why is the Infisical API rejecting my service token?
There are a few reasons for why this might happen:
- The service token has expired.
- The service token is insufficiently permissioned to interact with the secrets in the given environment and path.
- (If using ST V3) The service token has not been activated yet.
- (If using ST V3) The service token is being used from an untrusted IP.
Can you provide examples for using glob patterns?
Can you provide examples for using glob patterns?
Important: The
/ character acts as a path separator. A single * doesn’t match across / boundaries — use ** to match across multiple path segments.