Skip to content

Commit

Permalink
test(NODE-377): use env var for kmip certs
Browse files Browse the repository at this point in the history
  • Loading branch information
durran committed Jan 17, 2022
1 parent 7b08a4a commit 83fc78e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ describe('Client Side Encryption Corpus', function () {
// Configure both objects with ``keyVaultNamespace`` set to ``keyvault.datakeys``.
const tlsOptions = {
kmip: {
tlsCAFile: '/Users/modetojoy/work/mongodb-labs/drivers-evergreen-tools/.evergreen/x509gen/ca.pem',
tlsCertificateKeyFile: '/Users/modetojoy/work/mongodb-labs/drivers-evergreen-tools/.evergreen/x509gen/client.pem'
tlsCAFile: process.env.KMIP_TLS_CA_FILE,
tlsCertificateKeyFile: process.env.KMIP_TLS_CERT_FILE
}
};
const autoEncryption = {
Expand Down

0 comments on commit 83fc78e

Please sign in to comment.