From e12506915ea1171be0ca5b90c93e88878054b0e7 Mon Sep 17 00:00:00 2001 From: TheEdgeOfRage Date: Tue, 9 Jan 2024 00:39:25 +0100 Subject: [PATCH] Remove ssl disable from dpsqluri --- dot_config/zsh/functions/dpsqluri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/zsh/functions/dpsqluri b/dot_config/zsh/functions/dpsqluri index 07aa134..fccea95 100644 --- a/dot_config/zsh/functions/dpsqluri +++ b/dot_config/zsh/functions/dpsqluri @@ -2,4 +2,4 @@ # connect to dune RDS instance PGPASSWORD=$(aws secretsmanager get-secret-value --secret-id ${1}_${2}_db_${2}_user_password --output text --query SecretString) -echo "postgres://${2}:${PGPASSWORD}@${1}-${2}-db.tailf3b9f.ts.net/${2}?sslmode=disable" +echo "postgres://${2}:${PGPASSWORD}@${1}-${2}-db.tailf3b9f.ts.net/${2}"