ePrivacy and GPDR Cookie Consent by Cookie Consent Skip to main content

Workspace variables

Workspace variables in Meiro Integration is a feature that allows you to hold common information for all configurations, such as the name of the AWS S3 bucket, hosts and database name, in a workspace in the form of a variable(s).

This means that if you change the value of a specific variable in your workspace, it will be updated across all running configurations in this workspace in which this variable was used.  

This feature can be particularly useful when you first want to set up and test the configurations on your test data sources and/or other data sources that you want to export your data to, before switching to the production environment.

Adding variables

To add a variable in a workspace go to the Variables section and click on the Manage Variables button.

Manage-variable.png

Fill in the name of the variable, the value, and save the results. Add as many variables as you need.

Variables.png

Variable can be not only alone but also anywhere in the string e.g. "key": "hey_{{var}}_hou"

It can be also more than 1 variable defined e.g. "key": "hey_{{var1}}_{{var2}}hou"


Remember: If you wish to encrypt and not display values in the Meiro Integration when inserting it e.g. for passwords, please insert in the key #.

Copy variable

If needed, the variable can be copied to a clipboard by clicking on the copy icon. 

Copy-variables.png

You can also copy variables from JSON form.

Variables-JSON.png

Using variables in configurations

When you want to use the variable inside any configuration,  you need to fill in the desired field with the variable name in double curly braces: {{my_variable}}.

As shown in the screenshots below, the AWS S3 connector will save the downloaded data to the in/files/test folder as the value of my_variable (as defined in the field Save As in the screenshot below) is set to test. In AWS S3 connector Save As defines a folder where you want to save your data.

Variable-ASW-S3.png

variables-credentials.png

Keeping credentials in variables

You can store not only publicly available data such as file and folder names in the variables bucket but also secure sensitive data such as passwords, secret API keys, etc. 

To ensure that the variable value is encrypted, use the # prefix with the name of the variable: #mypasswordAfter saving the variables, the value of the variable will be encoded and accessible by configurations.

Variables-encryption.png

If you use the variable in fields that are already encoded by default (e.g. the Secret Access Key in the AWS S3 connector component in the above screenshot), the name of the variable (key name) itself will not be encoded by Meiro Integrations.

variable-access-key.png

Using variables in JSON configurations

You can use variables not only in form fields but also in the JSON configuration. 

For example, if you need to send a username and password to generate a token in the REST API processor component, take the name of the variable with curly brackets in double quotes.

Variables-fro-JSON.png

Use "{{#username}}" and "{{#password}}" in the configuration:

Variable-code-editor.png

This technique allows you to inject variables values inside any JSON configuration. If you don’t want the value of the variable to be hashed, simply don’t use the # symbol at the beginning of the name of a variable.

Variables in Python, R, CLI processors

You can choose the workspace variables that will be used in your Python, R, and CLI processors. Simply click on the Edit button in the section Workspace Variable Injection and choose the variable you wish to use. 

variable.png

After clicking on the Save button, your variable will be set to use within the processor.

variable-injection.png