mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
17 lines
601 B
TypeScript
17 lines
601 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
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\-\_\/]+$/;
|
|
|
|
export const DOCS_HELP_NOTICE: INodeProperties = {
|
|
displayName:
|
|
'Need help filling out these fields? <a href="https://docs.n8n.io/external-secrets/#connect-n8n-to-your-secrets-store" target="_blank">Open docs</a>',
|
|
name: 'notice',
|
|
type: 'notice',
|
|
default: '',
|
|
noDataExpression: true,
|
|
};
|