This CloudQuery transformer plugin provides basic transformation capabilities: - Removing columns - Adding literal string columns - Obfuscating string columns - Renaming tables using a name template (use `{{.OldName}}` to refer to the original name, see example below) ## Configuration First, add the transformer to your destination. For example, this will add a basic transformer to a PostgreSQL destination: ```yaml copy kind: destination spec: name: "postgresql" path: "cloudquery/postgresql" registry: "cloudquery" version: "v8.0.7" write_mode: "overwrite-delete-stale" migrate_mode: forced # optional transformers: - "basic" spec: connection_string: "postgresql://your.user:your.password@localhost:5432/db_name" ``` The `migrate_mode: forced` setting might make sense if you plan on modifying the schema from a previous sync. Then, add your transformer spec. Here's an example that transforms the XKCD source table: :configuration Note: transformations are applied sequentially. If you rename tables, the table matcher configuration of subsequent transformations will need to be updated to the new names.