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 PullSecretsToEnvCommand { constructor(mapPath, envFilePath) { this.mapPath = mapPath; this.envFilePath = envFilePath; } static create(mapPath, envFilePath) { return new PullSecretsToEnvCommand(mapPath, envFilePath); } } //# sourceMappingURL=PullSecretsToEnvCommand.js.map