02 Jul 2025 10:47 PM
I was wondering how others tackle the need of configuring e.g. workflows with monaco, where in some steps a credential needs to be loaded from the vault. And that accross multiple environments.
Example:
I create a workflow which uses at some point a credential from the vault. This is deployed via monaco, just fine. The credential ID is hardcoded and then used in the workflow:
"http_create_alerts": {
"name": "http_create_alerts",
...
"method": "POST",
"headers": {
"Content-Type": "application/json"
},
"payload": "...",
"credential": {
"type": "token",
"tokenPrefix": "ApiToken",
"credentialId": "CREDENTIAL-VAULT-12132323"
}
04 Jul 2025 09:20 PM
I use only overrides per environment . Entity lookups are, afaik, impossible with Monaco only. Entity lookup by name can be ambiguous. You create credential vault entries only once, so it should not be that difficult.
Having monaco parameter type of type entity lookup would be awesome anyway.