logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

void

Author

       MongoDB, Inc

Parameters

opts: The mongoc_auto_encryption_opts_ttls_opts: A bson_t mapping a Key Management Service (KMS) provider to a BSON document with TLS options.

       tls_opts is a BSON document of the following form:

          <KMS provider>: {
             tlsCaFile: Optional<String>
             tlsCertificateKeyFile: Optional<String>
             tlsCertificateKeyFilePassword: Optional<String>
          }

       The  KMS  providers  aws,  azure,  gcp, and kmip are supported as keys in the tls_opts document. They may
       include an optional name suffix separated with a colon. Example: aws:name2.

       tls_opts maps the KMS provider name to a BSON document for TLS options.

       The BSON document for TLS options may contain the following keys:

       • MONGOC_URI_TLSCERTIFICATEKEYFILEMONGOC_URI_TLSCERTIFICATEKEYFILEPASSWORDMONGOC_URI_TLSCAFILE

       Example use

          mongoc_auto_encryption_opts_t *ae_opts = mongoc_auto_encryption_opts_new ();
          bson_t *tls_opts = bson_new ();

          BCON_APPEND (tls_opts, "kmip", "{", MONGOC_URI_TLSCAFILE, "ca1.pem", "}");
          BCON_APPEND (tls_opts, "aws", "{", MONGOC_URI_TLSCAFILE, "ca2.pem", "}");
          mongoc_auto_encryption_opts_set_tls_opts (ae_opts, tls_opts);

       See ConfiguringTLS for a description of the behavior of these options.

       SEEALSO:mongoc_client_enable_auto_encryption()In-UseEncryption

Synopsis

          void
          mongoc_auto_encryption_opts_set_tls_opts (
             mongoc_auto_encryption_opts_t *opts, const bson_t *tls_opts);

See Also