Hi,
I'm trying to connect to
CockroachDB (which acts like Postgres) via any of the
Vertx data_access modules or alternatives using SSL and client certs.
I am wondering if any of these module support SSL/TLS plus client certs? I have been able to connect insecurely (just user/pwd) no problem.
I have not found any docs or examples regarding certs for connections similar to the blocking
JDBC driver connection properties. The configuration should be very similar to connecting to Postgres over SSL.
Is anyone aware if it's possible or examples - or connected to CockroachDB via SSL successfully?
I did see in the vertx-mysql-postgresql-client module that uses
mauricio/postgresql-async, that the mauricio lib supports sslmode verify-ca and verify-full, but these don't seem to be bubbled up to vertx-mysql-postgresql-client to use.
My alternative is to use the blocking driver and wrap all the db calls with
vertx.executeBlocking to deal with the blocking.
Thank you for your advise,
Kevin