Vinay Mahindrakar
06/30/2025, 8:24 AMselect: and metadata: in a separate file instead of including them directly in the meltano.yml file?
plugins:
  extractors:
  - name: tap-postgres
    variant: meltanolabs
    pip_url: meltanolabs-tap-postgres
    config:
      host: localhost
      port: 5432
      user: postgres
      password: '123123'
      database: postgres
      filter_schemas: [public]
    select:
    - public-work_orders.*
    - public-trips.*
    metadata:
      public-work_orders:
        replication_method: "INCREMENTAL"
        replication_key: created_at
      public-trips:
        replication_method: "INCREMENTAL"
        replication_key: created_atEdgar RamĂrez (Arch.dev)
06/30/2025, 6:13 PMTAP_POSTGRES__SELECT='["public-work_orders.*", "public-trips.*"]' env var in your .env file. I guess it depends on the motivation for putting those values in a separate file.