Created
August 10, 2021 09:18
-
-
Save dunithd/d65834685e071f26f2bda614b0576f33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -H 'Content-Type: application/json' debezium:8083/connectors --data ' | |
{ | |
"name": "shipments-connector", | |
"config": { | |
"connector.class": "io.debezium.connector.postgresql.PostgresConnector", | |
"plugin.name": "pgoutput", | |
"database.hostname": "postgres", | |
"database.port": "5432", | |
"database.user": "postgresuser", | |
"database.password": "postgrespw", | |
"database.dbname" : "shipment_db", | |
"database.server.name": "postgres", | |
"table.include.list": "public.shipments" | |
} | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment