Merge pull request #1680 from spotify/configurable-auth-providers

Read auth providers from app-config yaml
This commit is contained in:
Raghunandan Balachandran
2020-07-27 13:33:40 +02:00
committed by GitHub
15 changed files with 337 additions and 335 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ function makeCreateEnv(loadedConfigs: AppConfig[]) {
}
async function main() {
const configs = await loadConfig();
const configs = await loadConfig({ shouldReadSecrets: true });
const configReader = ConfigReader.fromConfigs(configs);
const createEnv = makeCreateEnv(configs);