envilder
Version:
A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth
34 lines • 745 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;
/**
* SSM path for the single environment variable
*/
ssmPath?: string;
/**
* AWS CLI profile to use
*/
profile?: string;
/**
* Flag to push local .env file back to AWS SSM (renamed from import)
*/
push?: boolean;
};
//# sourceMappingURL=CliOptions.d.ts.map