UNPKG

@idoconfig/provider-folder

Version:

Provider for idoconfig that reads values from files within a folder Useful for Docker Secrets.

12 lines (9 loc) 450 B
import { IFolderConfigurationValueProviderOptions } from "./interfaces/i-folder-provider-options"; export class FolderProviderOptions implements IFolderConfigurationValueProviderOptions { public path?: string = "/run/secrets/"; public stripFileExtension?: boolean = true; public uppercase?: boolean = true; public underscore?: boolean = true; public blacklist?: string[] = []; } export default FolderProviderOptions;