Connection Natives Attribute

About

Natives attributes are attributes of an external third party or library.

Their values are passed without any processing to the underlying system.

JDBC native attribute may be also known as connection parameters

How to set them ?

You can set them in the natives attribute of a connection in the configuration vault.

Example with the ssl Postgres Connection Parameter

connections:
   postgres:
    user: postgres
    uri: jdbc:postgresql://localhost:5432/postgres
    natives:
       # initialize ssl
       ssl: true
Task Runner