Using SSL with deno deploy and supabase postgres direct connection
Hello
I've been trying to setup an SSL connection with a supabase postgreSQL database using a direct connection. Unfortunaly it looks impossible to do it on Deno deploy. Am I right?
I've been trying my best to figure out a solution but it looks like I need to either use
--cert
--cert
or the environment variables
SSL_CERT_FILE
SSL_CERT_FILE
and
DENO_TLS_CA_STORE
DENO_TLS_CA_STORE
to make it work locally. However, on deno deploy, both options can't work:
--cert
--cert
isn't usable and
DENO_TLS_CA_STORE
DENO_TLS_CA_STORE
is forbidden
Any idea? I hope I don't need to abandon deno deploy.