aws-parameter-dotenv
Version:
Tiny library to Load environment variables directly from AWS Parameter Store
18 lines (17 loc) • 478 B
TypeScript
/**
* Extracts the parameter name
* @param parameterValue
*/
export declare const extractParameterName: (parameterValue: string) => string;
/**
* Project name and Environment should have only Letters or Numbers. No symbols are allowed
* @param value
*/
export declare const assertConfigIsValid: (config: {
project: string;
environment: string;
}) => void;
/**
* assert aws crendetials are valid
*/
export declare const assertAwsCrendentialsAreSetup: () => void;