hello, I'd like to provide a list of values (IDs) ...
# best-practices
s
hello, I'd like to provide a list of values (IDs) preferably in the
meltano run
command that need to be fetched from a custom tap. How do I do that?
r
Implement the setting
ids
(or whatever you want to call it) as an array of strings in your tap and then do
<TAP NAME>_IDS='["id0","id1","id2"]' meltano run <tap name> ...
☝️ 2
2
s
are there any changes I need to make to meltano.yml or any other file?
r
Oh, yes - you will need to define the setting for the plugin:
Copy code
- name: <tap-name>
    // ...
    settings:
    - name: ids
      kind: array
s
ok, thank you 👍