Looks like the input does not connect to TLS enabled endpoints.
In my case the connection would need to established with something like this
factory.Ssl.Enabled = true;
factory.Ssl.AcceptablePolicyErrors = SslPolicyErrors.RemoteCertificateNameMismatch;
I would suggest to make these two settings options of the input configuration.
If accepted, I can create a PR related to this.