Configuration
Flow Configuration
Flow configuration is done using variables. This section explains how to create them, how they work and how to use them to configure flows.
Variable scoping
Flow variables Flow variables are accessible throughout components within the same flow. If a percentage sign is part of the string and not meant to reference a variable, it can be escaped with a backslash. If a backslash in front of a percentage sign is part of the string, the backslash itself can be escaped as well.
Example of escaping characters
something%Variable%Something = somethingValueSomething
something\%Variable\%Something = something%Variable%Something
something\\\%Variable\%Something = something\%Variable%Something
something\\%Variable%Something = something\ValueSomething
Environment variables
Environment variables are accessible directly from within components or through referencing them within flow variables. To reference a variable, use the variable syntax (%variableName%).
Project environment secrets and variables
Project environment secrets and variables are accessible directly from within components. To reference a project environment secret or variable, use the variable syntax (%variableName%). Please refer to the project environment overview for more information.
Scope consideration
- Create flow variables for values that are commonly used within a flow.
- Use environment variables for storing sensitive information.