## Summary Fixes an issue preventing n8n from pulling secrets from Hashicorp Vault KV stores if the secret path contained a `-` or a `/`, An example provided was `integrations/n8n-workflows` which I have tested in my local instance of Vault. This still needs testing with Infisical to make sure nothing breaks there.
6 lines
250 B
TypeScript
6 lines
250 B
TypeScript
export const EXTERNAL_SECRETS_DB_KEY = 'feature.externalSecrets';
|
|
export const EXTERNAL_SECRETS_INITIAL_BACKOFF = 10 * 1000;
|
|
export const EXTERNAL_SECRETS_MAX_BACKOFF = 5 * 60 * 1000;
|
|
|
|
export const EXTERNAL_SECRETS_NAME_REGEX = /^[a-zA-Z0-9\_\/]+$/;
|