@larskarbo/gitops-secrets
Version:
SecretOps workflow for bundling encrypted secrets into your deployments to safely decrypt at runtime.
10 lines (9 loc) • 382 B
TypeScript
/**
* Fetch secrets from Doppler the API.
* @param {{dopplerToken: string}} [{dopplerToken: process.env.DOPPLER_TOKEN}] Requires a Doppler Service Token for API authentication. See https://docs.doppler.com/docs/enclave-service-tokens
*/
export declare function fetchSecrets({ dopplerToken }?: {
dopplerToken?: string;
} | undefined): Promise<{
[key: string]: string;
}>;