Hi all! Is there any equivalent environment variab...
# plugins-general
t
Hi all! Is there any equivalent environment variable that can be used in place of CLI commands such as the one below? I’m looking to select specific columns when pulling from `tap-postgres`:
Copy code
meltano select tap-postgres "salesorderdetail" "*"
k
TAP_POSTGRES__SELECT
I think this would be the env variable you can use
t
ah thank you very much! will try that now!
c
TAP_POSTGRES__SELECT
correct. it is an array. So,
TAP_POSTGRES__SELECT='["salesorderdetail.*"]'
is the syntax