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
34 lines • 760 B
TypeScript
/**
* Options for the CLI commands.
*/
export type CliOptions = {
/**
* Path to the JSON file with environment variable mapping
*/
map?: string;
/**
* Path to the .env file to be generated or imported
*/
envfile?: string;
/**
* Single environment variable name to push
*/
key?: string;
/**
* Value of the single environment variable to push
*/
value?: string;
/**
* Secret path in the cloud provider for the single environment variable
*/
secretPath?: string;
/**
* AWS CLI profile to use
*/
profile?: string;
/**
* Flag to push local .env file back to the secret store
*/
push?: boolean;
};
//# sourceMappingURL=CliOptions.d.ts.map