Did someone successfully added an additionally ca cert to the mongodb cluster?
I want to add the CA certificate from teleport so that connections can be tunneled over teleport:
Step 2: Configure MongoDB → Set up mutual TLS:
Export the Teleport Database Client CA from Teleport, and then add it as an additional trusted CA by concatenating it with your CA’s certificate:
tctl auth export --type=db-client > db-client-ca.crt
cat /path/to/your/ca.crt db-client-ca.crt > /etc/certs/mongo.cas
net:
tls:
mode: requireTLS
certificateKeyFile: /etc/certs/mongo.crt
CAFile: /etc/certs/mongo.cas
but not sure how to modify the mongodb perconca cluster to add additional CA certificate?