https://prefect.io logo
#prefect-community
Title
# prefect-community
a

Amol Shirke

08/03/2022, 12:43 PM
Hi, How I make SSL connection while connecting to postgres db?
1
a

Anna Geller

08/03/2022, 4:16 PM
no expert but some pointers: The use of SSL can be driven by the
sslmode=value
option on the psql CLI or the PGSSLMODE environment variable
to use it for DB connection for Prefect, I believe you need to add ssl=true to your connection string:
Copy code
"<postgresql://x:y@z:5432/psql?ssl=true>"
a

Amol Shirke

08/03/2022, 5:30 PM
Yep added that
I found its not prefect but certificate issue now
Thanks
🙌 1
9 Views