Hi, How I make SSL connection while connecting to ...
# ask-community
a
Hi, How I make SSL connection while connecting to postgres db?
1
a
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
Yep added that
I found its not prefect but certificate issue now
Thanks
🙌 1