Andy Carter
03/09/2023, 2:49 PM- name: tap-instagram
variant: voxmedia
pip_url: tap-instagram
config:
ig_user_ids:
- ${TAP_INSTAGRAM_USER_ID}
.env
TAP_INSTAGRAM_USER_ID=12345
results in
singer_sdk.exceptions.ConfigValidationError: Config validation failed: '${TAP_INSTAGRAM_USER_ID}' is not of type 'integer'pat_nadolny
03/09/2023, 3:33 PMkind setting value which defines the type, for this tap the type is array. It looks like the problem youre running into this issue https://github.com/meltano/meltano/issues/3171. Its literally receiving ${TAP_INSTAGRAM_USER_ID} as the value vs 12345 as you expectpat_nadolny
03/09/2023, 3:33 PMmeltano config tap-instagram to see the rendered config dictpat_nadolny
03/09/2023, 3:37 PMig_user_ids value using an env var like TAP_INSTAGRAM_IG_USER_IDS=[12345]Andy Carter
03/10/2023, 9:00 AM