@@ -23,8 +23,8 @@ module.exports = {
23
23
password : process . env . PG_PASSWORD || 'password' ,
24
24
port : parseInt ( process . env . PG_PORT , 10 ) || 5432 ,
25
25
26
- triggerFunctions : process . env . TRIGGER_FUNCTIONS || 'dev_db_notifications ' , // List of trigger functions to listen to
27
- triggerTopics : process . env . TRIGGER_TOPICS || [ 'dev .db.postgres.sync' ] , // Names of the topic in the trigger payload
26
+ triggerFunctions : process . env . TRIGGER_FUNCTIONS || 'prod_db_notifications ' , // List of trigger functions to listen to
27
+ triggerTopics : process . env . TRIGGER_TOPICS || [ 'prod .db.postgres.sync' ] , // Names of the topic in the trigger payload
28
28
triggerOriginators : process . env . TRIGGER_ORIGINATORS || [ 'tc-postgres-delta-processor' ] // Names of the originator in the trigger payload
29
29
} ,
30
30
KAFKA : { // Kafka connection options
@@ -39,7 +39,7 @@ module.exports = {
39
39
errorTopic : process . env . ERROR_TOPIC || 'db.scorecardtable.error' ,
40
40
recipients :
[ '[email protected] ' ] , // Kafka partitions to use,
41
41
KAFKA_URL : process . env . KAFKA_URL ,
42
- KAFKA_GROUP_ID : process . env . KAFKA_GROUP_ID || 'dev -postgres-ifx-consumer' ,
42
+ KAFKA_GROUP_ID : process . env . KAFKA_GROUP_ID || 'prod -postgres-ifx-consumer' ,
43
43
KAFKA_CLIENT_CERT : process . env . KAFKA_CLIENT_CERT ? process . env . KAFKA_CLIENT_CERT . replace ( '\\n' , '\n' ) : null ,
44
44
KAFKA_CLIENT_CERT_KEY : process . env . KAFKA_CLIENT_CERT_KEY ? process . env . KAFKA_CLIENT_CERT_KEY . replace ( '\\n' , '\n' ) : null ,
45
45
} ,
@@ -55,7 +55,7 @@ module.exports = {
55
55
} ,
56
56
DYNAMODB :
57
57
{
58
- DYNAMODB_TABLE : process . env . DYNAMODB_TABLE || 'dev_pg_ifx_payload_sync ' ,
58
+ DYNAMODB_TABLE : process . env . DYNAMODB_TABLE || 'prod_pg_ifx_payload_sync ' ,
59
59
DD_ElapsedTime : process . env . DD_ElapsedTime || 600000
60
60
} ,
61
61
0 commit comments