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

16 lines 738 B
import type { ILogger } from '../../domain/ports/ILogger.js'; import type { ISecretProvider } from '../../domain/ports/ISecretProvider.js'; import type { PushSingleCommand } from './PushSingleCommand.js'; export declare class PushSingleCommandHandler { private readonly secretProvider; private readonly logger; private static readonly RULE; constructor(secretProvider: ISecretProvider, logger: ILogger); /** * Handles the PushSingleCommand which pushes a single environment variable to the secret store. * * @param command - The PushSingleCommand containing key, value and secretPath */ handle(command: PushSingleCommand): Promise<void>; } //# sourceMappingURL=PushSingleCommandHandler.d.ts.map