Skip to main content

Define Once. Use Everywhere.

Store shared URLs, API keys, thresholds, and client names in one place and reference them across projects.

Avoiding Hard-Coded Repetition

When the same value appears in many workflows, editing that value becomes a maintenance burden. A customer email address, a login URL, a pricing threshold, or an API key may be embedded in dozens of steps. Updating each one manually increases the chance of missing a location and creating inconsistencies.

Global variables solve this by storing the value once. Commands reference the variable name instead of the literal value. When the value changes, you update the global variable in one place, and every project that uses it reflects the change automatically.

Common Values to Store

Global variables fit values that are shared across workflows. Common examples include base URLs, client names, default wait times, pricing thresholds, file paths, and support contact details. Secret values such as API keys and connection strings can also be stored, keeping them out of individual command panels.

Because variables are stored locally, they follow the same privacy model as the rest of RTILA X. Your credentials are not synced to a remote settings service.

Scoping and Overrides

Global variables provide broad reuse. When a specific project needs a different value, you can use a local project variable instead. This gives you both consistency and flexibility. Most projects reference the global value, while exceptions use their own local override.

The distinction between global and local variables also keeps the workspace understandable. Global values represent organization-wide constants; local values represent project-specific details.

Maintenance and Transparency

Because variables appear by name in command panels, workflows become more readable. Instead of an anonymous URL buried in a navigation step, you see a variable like baseUrl that describes the value’s role. This improves handoff when another team member reviews the project later.

When it is time to change a value, the variable panel gives you one location to update. The update applies across all projects that reference it, reducing both the time and risk of routine maintenance.

Frequently Asked Questions

Can global variables be used in all projects?
Yes. Global variables are available across the projects in your workspace.
Can I use secret values like API keys?
Yes. Variables can store connection strings and keys, and they remain stored locally in RTILA X.
Can I override a global variable in one project?
Depending on project scoping, you can use local variables when a project needs a different value.

Ready to Get Started?