File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/backend/src/config Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 217217 {
218218 "name" : " POSTMAN_SMS_QPS_LIMIT_PER_CAMPAIGN" ,
219219 "valueFrom" : " plumber-<ENVIRONMENT>-postman-sms-qps"
220+ },
221+ {
222+ "name" : " RDS_PROXY_HOST" ,
223+ "valueFrom" : " plumber-<ENVIRONMENT>-rds-proxy-host"
220224 }
221225 ]
222226}
Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ const appConfig: AppConfig = {
6969 version : process . env . npm_package_version ,
7070 postgresDatabase : process . env . POSTGRES_DATABASE || 'plumber_dev' ,
7171 postgresPort : parseInt ( process . env . POSTGRES_PORT || '5432' ) ,
72- postgresHost : process . env . POSTGRES_HOST || 'localhost' ,
72+ postgresHost :
73+ process . env . RDS_PROXY_HOST || process . env . POSTGRES_HOST || 'localhost' ,
7374 postgresUsername : process . env . POSTGRES_USERNAME ,
7475 postgresPassword : process . env . POSTGRES_PASSWORD ,
7576 postgresEnableSsl : process . env . POSTGRES_ENABLE_SSL === 'true' ,
You can’t perform that action at this time.
0 commit comments