Is it possible to use SSL for cluster communications when using IP addresses for gossip seeds (i.e. DNS is not an option)?
So you’re doing something like this:
var builder = ClusterSettings.Create();
var gossipBuilder = builder.DiscoverClusterViaGossipSeeds();
var seedBuilder = gossipBuilder.SetGossipSeedEndPoints(
endPoints.Select(e => new GossipSeed(e)).ToArray());
var eventStoreConnection = EventStoreConnection.Create(
settings,
seedBuilder,
“default”);
``
And you would like to have invoked:
settings.UseSslConnection - which takes a hostname and a bool indicating if you want to validate the certificate.
I suppose if you don’t validate the cert this might work out - but assuming that that’s important, is there another way to make SSL work?