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

10 lines 324 B
export class PushEnvToSecretsCommand { constructor(mapPath, envFilePath) { this.mapPath = mapPath; this.envFilePath = envFilePath; } static create(mapPath, envFilePath) { return new PushEnvToSecretsCommand(mapPath, envFilePath); } } //# sourceMappingURL=PushEnvToSecretsCommand.js.map