17 lines
516 B
JSON
17 lines
516 B
JSON
|
|
{
|
||
|
|
"name": "postgres-sales-connector",
|
||
|
|
"config": {
|
||
|
|
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
|
||
|
|
"database.hostname": "10.0.21.51",
|
||
|
|
"database.port": "5432",
|
||
|
|
"database.user": "mo",
|
||
|
|
"database.password": "${DEBEZIUM_DB_PASSWORD}",
|
||
|
|
"database.dbname": "postgres",
|
||
|
|
"topic.prefix": "postgres_sales",
|
||
|
|
"schema.include.list": "public",
|
||
|
|
"table.include.list": "public.sales_orders",
|
||
|
|
"plugin.name": "pgoutput",
|
||
|
|
"publication.name": "dbz_publication"
|
||
|
|
}
|
||
|
|
}
|