is there a way to print out the `env` 's from the ...
# getting-started
j
is there a way to print out the
env
's from the
meltano.yml
file:
Copy code
version: 1
send_anonymous_usage_stats: false
project_id: tap-pardot
default_environment: dev
environments:
  - name: dev
    config:
      plugins:
        extractors:
          - name: tap-pardot
            load_schema: pardot5_dev
        loaders:
          - name: target-redshift
            default_target_schema: pardot5_dev
    env:
      pardot_api_url: <https://pi.demo.pardot.com>
      sfdc_client_key: 'random'
      sfdc_client_secret: 'random'
      sfdc_redirect_uri: '<https://blah.sandbox.my.salesforce.com/>'
      start_date: '2023-05-01T00:00:00Z'
i tried
meltano --environment=dev config tap-pardot list
but i get stuff from outside the environments:
Copy code
plugins:
  extractors:
    - name: tap-pardot
      namespace: tap_pardot
      pip_url: -e .
      capabilities:
        - about
        - catalog
        - discover
      metadata:
        prospects:
          replication-method: INCREMENTAL
          replication-key: updatedAt
i just get the
metadata
stuff
a
meltano compile
?