Set "ssl" parameter for jdbc input plugin

Hi.
My Postgres connection requires setting two parameters:
ssl=true
sslmode=require
I can't find any options to set these parameters.

Is it possible to use jdbc input plugin in this case?

Include those values in the connection string, see https://jdbc.postgresql.org/documentation/head/connect.html.

many thanks. I've found this solution also) It works like this
jdbc_connection_string => "jdbc:postgresql://xx.xx.xx.xx:5432/postgres?ssl=true&sslmode=require"

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.