
Create a secret
Secrets are strings stored as key-value pairs. To create a secret, go to the Vault tab in the Agent Builder UI and click +Add a pair. The example below creates a secret with the nameWRITER_API_KEY
. When you type the value, it’s masked in the UI.
Click Save to store the secret.

Use a secret
To use a secret, reference it in a block in your blueprint with the prefix@{vault}
. For example, to use the WRITER_API_KEY
secret, you would use it as @{vault.WRITER_API_KEY}
.
The example below shows adding an authorization header to an HTTP request block using the WRITER_API_KEY
secret.


Use a secret in Python code
You can access secrets in Python code blocks within blueprints using thevault
object. vault
is a dictionary that contains all the secrets in your blueprint.
For example, to access a secret called API_KEY
and use it in an HTTP request, you would use the following code: