Hello Everyone, Is it possible to use multiple go...
# troubleshooting
v
Hello Everyone, Is it possible to use multiple google client credentials within the same meltano project? So, I have 3 different json files with client secrets to connect to google big query (let's name them client_secret_1.json, client_secret_2.json, client_secret_3.json , and i am using tap-bigquery as an extractor. In the .env file I have the GOOGLE_APPLICATION_CREDENTIALS= ./client_secret_1.json But I would like to know how do I do it, so that I could list all three client_secret json files within the same project?
a
Essentially you need to
export GOOGLE_APPLICATION_CREDENTIALS
to the value you want to use before each
meltano run ...
v
@aaron_phethean Thank you for the input.