For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Release notes
    • Overview
    • Changelog
      • Overview
      • AngularJS deprecated
      • Decision task replaced in GEN 2 workflows
      • Form Builder deprecated
      • Multiple file imports for projects deprecated
      • Optional HTTP Verbs property removed
      • Profile route and profile property deprecated
      • SSL properties deprecated in MongoProps
      • UI libraries deprecated
      • User Profile APIs deprecated
      • Verify Config API deprecated
LogoLogo
Open sourceSupportFAQsDocs Home
On this page
  • SSL security properties deprecated in MongoProps [2023.2]
  • SSL — deprecated
  • TLS — replacement
  • What should I do?
Release notesDeprecations

SSL properties deprecated in MongoProps

Was this page helpful?
Previous

UI libraries deprecated

Next
Built with

SSL security properties deprecated in MongoProps [2023.2]

The ssl security properties in the mongoProps section of the properties.json file are deprecated in 2023.2 and scheduled for removal in 2024.2. They will be replaced with tls properties. The replSet key will also be removed as it provides no useful function.

ProtocolDescriptionDeprecation releaseScheduled removal releaseReplacement
SSLUsed to create a secure, encrypted connection to MongoDB.2023.22024.2TLS

SSL — deprecated

1"mongoProps": {
2 "ssl": {
3 "enabled": true,
4 "sslValidate": true,
5 "sslCA": "/etc/ssl/keys/mongo_ca_chain.cert",
6 "acceptInvalidCerts": false,
7 "checkServerIdentity": true
8 },
9 "replSet": {
10 "enabled": true
11 }
12}

TLS — replacement

1"mongoProps": {
2 "tls": {
3 "enabled": true,
4 "tlsCAFile": "/etc/ssl/keys/mongo_ca_chain.cert",
5 "tlsAllowInvalidCerts": false
6 }
7}

What should I do?

Find each properties.json file used in your environment and remove all references to the ssl properties, replacing them with the tls equivalent as shown above.