Unlike streaming replication, logical replication lets you replicate specific tables or filter rows.
-- On publisher
CREATE PUBLICATION my_pub FOR TABLE users, orders;
-- On subscriber
CREATE SUBSCRIPTION my_sub
CONNECTION 'postgresql://host/dbname'
PUBLICATION my_pub;