Benedikt Buchert
01/18/2023, 11:57 AMEncountered an error:
Database Error
[Errno 2] No such file or directory: '/secrets/dbt-service-keyfile'
I have no longer have a reference to the /secrets/dbt-service-keyfile in my code anymore I'm using a env variable instead in my profiles.yml
that uses method: service-account-json
Locally that works fine. But on the hosted machine it is failing. I'm not sure were else to look.rex
01/18/2023, 3:43 PMdbt will search the current working directory for theI would check in your docker VM to see if yourfile and will default to theprofiles.yml
directory if not found.~/.dbt/
~/.dbt/
folder still has the stale reference to your former profiles.yml
. If so, you should delete it.Benedikt Buchert
01/18/2023, 3:49 PM