Global Variables
Global variables are persistent values that can be defined once and used across your entire Workspace and within multiple Workflows. They provide a centralized way to store and share data, ensuring consistency and reducing the need for repetitive configurations. By using global variables, teams can efficiently manage common values such as credentials, status updates, and other frequently used data, streamlining workflow execution and saving time.
Note
Global variables can be added with the Variable Picker.
Global Variable Types
There are two distinct types of Global Variables:
-
Raw value variable:
- Stores plain text values that are visible to anyone with access to the workflow.
- Typically used for non-sensitive information like configuration settings or default values.
-
Secret variables
- Store sensitive information like API keys, passwords, or tokens in an encrypted format.
- Their values are hidden in the workflow editor and logs for security reasons.
Use Secret Global Variables whenever handling sensitive or confidential data to ensure it remains secure throughout the workflow execution.
Creating a New Global Variable
Add new global variable
On the left-hand side navigation menu, click the icon > New Variable. The New Global Variable dialog box opens.
Enter the following parameters
Parameter | Description |
---|---|
Name | Name of global variable. |
Value | Value of the variable. |
Secret | Select the checkbox if you wish to define the variable as secret. Uses the default secret manager of the workspace. |
Click Create
Your newly created variable will be added to the table.
Using global variables in Workflows
Use global variables anywhere that the variable picker is available. All existing global variables can be found in the GLOBAL VARIABLES section in the variable picker.
Access the Variable Picker
Click + to open the Variable Picker.
Select the Global Variable
Select a global variable. In this example we are selecting the “Default Slack Variable” option.
- If it is a _secret global variable, the variable value is not displayed.
- If it is a raw value variable, its value is displayed on the right-hand side of the variable picker.
Add it to the Workflow
Click Add. The global variable is defined in your Workflow Step.
Global Variables Actions
Create or update a Global Variable
Creates or updates a Global Variable.
Parameter | Description |
---|---|
Variable Name | The name of the new/existing global variable. Once created/updated, it is available for all Workflows in a workspace. |
Variable Value | Assign a value to the global variable. Value is string only, limited to 1 MB size. |
Update Global Variable
Updates a Global Variable.
Parameter | Description |
---|---|
Variable Name | The name of the new global variable. |
Variable Value | Assign a value to the global variable. Value is string only, limited to 1 MB size. |
Delete Global Variable
Deletes a Global Variable.
Parameter | Description |
---|---|
Variable Name | The name of the global variable to delete. Once deleted, it is not available for all other Workflow in a workspace. |
Get Global Variable
Gets the value of a Global Variable.
Parameter | Description |
---|---|
Variable Name | The name of the global variable to get. |
List Global Variables
Get a list of all the Global Variables.
No parameters required. The results are returned in JSON formats
Was this page helpful?