jenn_leon
08/25/2022, 10:06 AMtap-airtable extractor using an env variable for the select but is not recognise, someone know how can i do this??christoph
08/25/2022, 10:14 AMTAP_AIRTABLE__SELECT ? In .env ?jenn_leon
08/25/2022, 11:51 AMextractors:
- name: tap-airtable
select:
- $AIRTABLE_VIEWpat_nadolny
08/25/2022, 4:21 PM- ${AIRTABLE_VIEW}jenn_leon
08/25/2022, 4:24 PMedgar_ramirez_mondragon
08/25/2022, 5:21 PMselect array are not expanded. if there’s a shell script or similar already setting AIRTABLE_VIEW, then it might be worth assigning a value to the TAP_AIRTABLE__SELECT env var:
export AIRTABLE_VIEW=...
export TAP_AIRTABLE__SELECT="[\"$AIRTABLE_VIEW\"]"jenn_leon
08/26/2022, 2:56 PMedgar_ramirez_mondragon
08/26/2022, 3:09 PM