Startup issues on Mongodb Community Edition 7.0 using TLS

Hello!

I am trying to setup Mongodb Community Edition v7.0.14 with TLS enabled on Windows. With TLS disabled everything works, but when I enable TLS Mongodb won’t start up.
My server certificate resides in the Windows certificate store under the Personal folder. The certificate is signed by a CA-certificate in the Trusted Root Certification store. The certificates are fine, they work fine with other applications.

My Mongodb configuration file contains this section:

  tls:
     mode: requireTLS
     certificateSelector: thumbprint=f2e3f52b8069c3209e14430d6f4dfbb11c05a011
     allowConnectionsWithoutCertificates: true

For some reason it fails to start with below message:

{"t":{"$date":"2024-10-23T10:48:07.914Z"},"s":"F",  "c":"CONTROL",  "id":20574,   "ctx":"thread1","msg":"Error during global initialization","attr":{"error":{"code":72,"codeName":"InvalidOptions","errmsg":"The use of TLS without specifying a chain of trust is no longer supported. See
https://jira.mongodb.org/browse/SERVER-72839
for details."}}}

When i try to disabling TLS by commenting it #tls, it works fine.
Please advise if anything is missing in the config file.