mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-13 00:28:49 +02:00
17 lines
248 B
JavaScript
17 lines
248 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2026, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
'use strict';
|
|
|
|
module.exports = function (environment) {
|
|
const ENV = {
|
|
modulePrefix: 'replication',
|
|
environment,
|
|
};
|
|
|
|
return ENV;
|
|
};
|