From 9d1d69c9dfa48dab83727844cb9aa6fed61eab5b Mon Sep 17 00:00:00 2001 From: Aditya Choudhari Date: Wed, 28 Aug 2024 18:10:57 -0700 Subject: [PATCH] use correct postgres port --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 6095b18..57b4e3b 100644 --- a/main.tf +++ b/main.tf @@ -74,7 +74,7 @@ module "helm_release" { postgres_user = module.database.sql_user_username postgres_password = module.database.sql_user_password postgres_host = module.database.database_instance_private_ip_address - postgres_port = 3306 + postgres_port = 5432 postgres_database = module.database.database_name service_account_email = module.service_accounts.service_account_email