We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fbacb3 commit f120dd4Copy full SHA for f120dd4
test/integration/client-side-encryption/client_side_encryption.prose.test.js
@@ -12,6 +12,9 @@ const getKmsProviders = localKey => {
12
if (localKey) {
13
result.local = { key: localKey };
14
}
15
+ result.kmip = {
16
+ endpoint: 'localhost:5698'
17
+ };
18
19
return result;
20
};
test/tools/spec-runner/index.js
@@ -75,6 +75,12 @@ function translateClientOptions(options) {
75
kmsProviders.kmip = {
76
endpoint: 'localhost:5698'
77
78
+ options.autoEncryption.tlsOptions = {
79
+ kmip: {
80
+ tlsCAFile: process.env.KMIP_TLS_CA_FILE,
81
+ tlsCertificateKeyFile: process.env.KMIP_TLS_CERT_FILE
82
+ }
83
84
85
86
options.autoEncryption.kmsProviders = kmsProviders;
0 commit comments