UNPKG

envilder

Version:

A CLI and GitHub Action that securely centralizes your environment variables from AWS SSM or Azure Key Vault as a single source of truth

6 lines 234 B
export interface ISecretProvider { getSecret(name: string): Promise<string | undefined>; setSecret(name: string, value: string): Promise<void>; logIdentity?(): Promise<void>; } //# sourceMappingURL=ISecretProvider.d.ts.map