Secrets
A Secret is an Unmeshed construct that is designed to store confidential information such as API keys or passwords.
To use Secrets in your Processes and Steps, you can use the {{ secrets.<secret_name> }}
syntax. For example:
note
Secrets are case-sensitive by default in Unmeshed
{{ secrets.MySecret }}
is different from
{{ secrets.mysecret }}
Video Guide: Secrets
Why should I use Secrets?
Keeping Secrets in a central place has two main benefits. First, it makes it easier to track and change secrets used in the application. Second, it removes any potentially confidential information from Processes and Steps definitions, allowing users to use the Secrets, but not to have direct access to them.
How to use Secrets?
Refer to this page for details and samples about how to use secrets Passing Variables