Skip to main content
Version: 2.70.0-Beta 🚧

Workspace Constants and Secrets

Workspace constants and secrets are predefined values that can be used across your application to maintain consistency, facilitate easy updates, and securely store sensitive information. This document will guide you through the usage and management of workspace constants and secrets within your workspaces.

Types of Constants

ToolJet offers two types of constants:

  1. Global Constants: Used for reusable values that can be applied consistently across the product.
  2. Secrets: Used for secure storage of sensitive data.

Characteristics and Usage

CharacteristicGlobal ConstantsSecrets
App Builder✔️
Data Sources✔️✔️
Data Queries✔️✔️
Workflows✔️
Encrypted in DB✔️✔️
Masked in FE✔️
Naming Convention{{constants.constant_name}}{{secrets.secret_name}}
info

Secrets cannot be used in RunJS or RunPy queries.

Environment-Specific Configurations

Users can define environment-specific configurations by setting different values for constants and secrets across environments. This is useful for managing sensitive information such as API keys, database credentials, or external service endpoints which may vary between different environments. For example, you can set different API keys for development, staging, and production environments.

Environment-Specific Constants

Server-Side Resolution and Security

Both workspace constants and secrets are resolved on the server side only. This ensures that sensitive data remains secure and is not exposed to the client-side. All constants and secrets are encrypted before being stored in the database, providing an additional layer of security.

Access Control

Creating, updating, and deleting constants and secrets are exclusive privileges granted to Admins. Workspace constants and secrets are specific to the workspace where they are created and cannot be utilized in other workspaces.

Creating Workspace Constants and Secrets

To create workspace constants or secrets, follow these steps:

  1. Access the ToolJet Dashboard and click on the Workspace Constants tab from the left sidebar.
  2. Click on the Create new constant button.
  3. A drawer will appear. Enter the desired name and value for the constant or secret.
  4. Select one of the following types:
    • Global constant
    • Secret
  5. Click the Add constant button to save.
Create New Constant
info

Once a constant or secret is created, its type cannot be changed. You'll need to delete it and create a new one of the desired type.

Using Global Constants

Global constants can be used in the app builder, data sources, data queries, and workflows.

In App Builder

Inside the App Builder, you'll find the Inspector on the left sidebar with a Constants section displaying all available global constant values.

Use Global Constants Inside App Builder

In Data Sources and Queries

You can use global constants in datasource connection forms and queries using the syntax {{constants.constant_name}}.

Data Source Connection Form:

Use Global Constants Data Source Connection Form

Inside Queries in Query Manager:

Use Global Constants Inside Queries in Query Manager

Using Secrets

Secrets are designed for secure storage of sensitive information like API keys, database credentials, and encryption keys.

In Data Sources and Queries

You can use secrets in datasource connection forms and queries using the syntax {{secrets.secret_name}}. The values of secrets will be masked in the frontend and cannot be viewed except in the workspace constant dashboard.

Data Source Connection Form:

Use Secrets in Data Source Connection Form

Inside Queries in Query Manager:

Use Secrets Inside Queries in Query Manager
info

Secrets cannot be used within the App Builder or workflows.

Best Practices

  • Use global constants for reusable values that are frequently used across your application.
  • Use secrets for storing sensitive information that should not be exposed in the codebase or frontend.
  • Regularly review and update your constants and secrets to ensure they remain relevant and secure.