add ability to turn certificate validation off

This commit is contained in:
Brent Shikoski
2023-09-03 20:19:56 -05:00
parent b25d896dd6
commit 87119cee2e
3 changed files with 28 additions and 2 deletions

View File

@@ -80,8 +80,14 @@ const getEnvVars = (environment = {}) => {
return envVars;
};
const options = {};
const getOptions = () => {
return options;
}
module.exports = {
bruToJson,
bruToEnvJson,
getEnvVars
getEnvVars,
getOptions
};