How to Reference a Blueprint Variable

Overivew

As part of creating a Blueprint, you'll no doubt have multiple Blueprint Variables that users can fill out. To access the data that users enter, you'll want to use the Variable's Reference Name.

For the examples below, say we have an example where the Variable's Reference Name is cool_var_name .

Steps

  1. Locate the field where you want user data to flow into. Common locations are in the Argument Value or the Environment Variable Value field.

  2. Use the format of ${VAR_NAME} , replacing VAR_NAME with your Reference Name. For our example, this would be ${cool_var_name}

  3. Save the Vessel.

Now, when the Vessel runs, the reference of ${cool_var_name} will be replaced by whatever the user enters for that variable.

Further Reading

Learn how Blueprint Variables are created and stored. Learn how to access Environment Variables.

Last updated

Was this helpful?