matt_cooley
12/18/2021, 12:36 AMoverride
the existing or default config and you can’t add new ones? I was trying something like this:
plugins:
extractors:
- name: tap-mysql
environments:
- name: dev
config:
plugins:
extractors:
- name: tap-mysql
config:
host: ${MELTANO_HOST}
user: ${MELTANO_USER}
database: ${MELTANO_DATABASE}
filter_dbs: ${MELTANO_DATABASE}
password: ${MELTANO_PASSWORD}
port: 3307
foo: bar
In this case it will override the “default” fields (host, port, etc), but it won’t let me add any new fields (e.g. foo
). Am I missing something here or is this expected behavior.
My staging environment requires config that can’t be present in the prod env. (I was using this as a guide — I’m aware of the bug in that particular line fwiw)taylor
12/18/2021, 2:24 AMconfig
and list
within and environment to see what you get https://meltano.com/docs/command-line-interface.html#using-config-with-environmentsmatt_cooley
12/18/2021, 2:53 AMpat_nadolny
12/18/2021, 4:29 PM