@idoconfig/provider-folder
Version:
Provider for idoconfig that reads values from files within a folder Useful for Docker Secrets.
14 lines • 464 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class FolderProviderOptions {
constructor() {
this.path = "/run/secrets/";
this.stripFileExtension = true;
this.uppercase = true;
this.underscore = true;
this.blacklist = [];
}
}
exports.FolderProviderOptions = FolderProviderOptions;
exports.default = FolderProviderOptions;
//# sourceMappingURL=folder-provider-options.js.map
;