Hello!
I have a few questions.
I'm thinking to try Prisma with MongoDB connector but instead of real MongoDB we have AWS DocumentDB, are there any known issues regarding that, should i do it?
AWS DocumentDB does not support public endpoints so I'm connecting to it from my local machine using SSH Tunneling, + we have an SSL connection. but Prisma gives me an error that names in certificate and hostname do not match since the hostname is the name of the machine running SSH tunnel, I was able to surpass the error with mongo shell or other tools by adding tlsInsecure=true to the connection string, but seems like in case of Prisma it's not getting recognised, any suggestions?
Thanks!