n8n
Version:
n8n Workflow Automation Tool
12 lines (11 loc) • 400 B
TypeScript
import type { SecretsProviderSettings } from '../../types';
export type AzureKeyVaultEnvironment = 'public' | 'usGovernment' | 'china' | 'custom';
export type AzureKeyVaultContext = SecretsProviderSettings<{
vaultName: string;
tenantId: string;
clientId: string;
clientSecret: string;
environment?: AzureKeyVaultEnvironment;
vaultUrl?: string;
authorityHost?: string;
}>;