Enable logical replication
Create or modify a parameter group for your RDS Postgres major version and set:Apply the parameter group to your RDS instance.
Allow network access
In the RDS console, open Databases > your instance > Connectivity & security and confirm the endpoint and port.Allow Ardent’s egress IP to reach the instance on the Postgres port, usually
5432. Ask your Ardent contact for the current egress IP if you do not already have it.If your RDS instance is private-only, use a BYOC environment and PrivateLink rather than opening public ingress.Grant replication permissions
Connect as a role with Ardent may also need per-database and per-schema grants for the schemas you want to replicate. Preflight generates the exact SQL.
rds_superuser privileges and grant the RDS replication role to the user Ardent will connect as:Run preflight
Your RDS connection string looks like:Run:Preflight checks reachability, credentials, source writability, logical replication, RDS replication permissions, table grants, and duplicate-source status without creating a connector or storing credentials.If preflight says the source is a read replica, use the writer endpoint instead. Ardent refuses read replicas because full-fidelity branching needs a source that can support logical replication and schema tracking.
Run the generated grant script if needed
If preflight reports missing table or schema grants, copy the Grant script section and run it in
psql as a role allowed to grant those privileges.Then re-run preflight until it passes.Connect your database