gary_james
12/15/2021, 10:26 AMtap-dbt
to run in Meltano? Specifically, regardless of how I try to set the account_ids
in meltano.yml
I always get hit by: ValueError: JSON value '<account_id>' is not an array
, the tap runs successfully when executed directly with a config file but...
in meltano.yml
I've currently got:
config:
account_ids:
- "<account_id>"
taylor
12/15/2021, 5:04 PMconfig:
account_ids:
- 12345
does that work?edgar_ramirez_mondragon
12/15/2021, 5:42 PM- name: tap-dbt
namespace: tap_dbt
pip_url: tap-dbt==0.1.1
executable: tap-dbt
capabilities:
- catalog
- discover
- state
settings:
- name: api_key
kind: password
- name: account_ids
kind: array
- name: user_agent
- name: base_url
config:
account_ids:
- "12345"
edgar_ramirez_mondragon
12/15/2021, 5:55 PMaaronsteers
12/15/2021, 6:09 PMkind: array
is needed to pass in the right format as @edgar_ramirez_mondragon has above 馃憜aaronsteers
12/15/2021, 6:10 PMgary_james
12/15/2021, 6:42 PMkind
bit 馃槄 all seems to be groovy now! 馃榿