You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Specifies the location of a local .pem file that contains the root certificate chain from the Certificate Authority. This file is used to validate the certificate presented by the mongod/mongos instance. */
119
119
tlsCAFile?: string;
120
+
/** Specifies the location of a local .crl file that contains the client revokation list. */
121
+
tlsCRLFile?: string;
120
122
/** Bypasses validation of the certificates presented by the mongod/mongos instance */
121
123
tlsAllowInvalidCertificates?: boolean;
122
124
/** Disables hostname validation of the certificate presented by the mongod/mongos instance. */
@@ -790,7 +792,7 @@ export interface MongoOptions
790
792
* | nodejs native option | driver spec equivalent option name | driver option type |
0 commit comments