mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
17 lines
240 B
JavaScript
17 lines
240 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
'use strict';
|
|
|
|
module.exports = function (environment) {
|
|
const ENV = {
|
|
modulePrefix: 'ldap',
|
|
environment,
|
|
};
|
|
|
|
return ENV;
|
|
};
|