Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Add Postgres SSL Fields to JSONData #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions datasource.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ type JSONData struct {

// Used by PostgreSQL
Sslmode string `json:"sslmode,omitempty"`
SslRootCertFile string `json:"sslRootCertFile,omitempty"`
SslCertFile string `json:"sslCertFile,omitempty"`
SslKeyFile string `json:"sslKeyFile,omitempty"`
PostgresVersion int64 `json:"postgresVersion,omitempty"`
Timescaledb bool `json:"timescaledb,omitempty"`

Expand Down