BigQuery authentication with JWT token #68
pichain001
started this conversation in
General
Replies: 1 comment
-
I am not aware of any JWT token, that enables you to access bigquery. The only way i know is to impersonate a service account with the needed permissions. Being in the gcp you can always use the APPLICATION_DEFAULT_CREDENTIALS from the running node. This then is the service account running the instance (Cloud Run, Kubernetes Node, etc.). The appropriate methode would be This way you don't handle keys or anything, but you are bound to invoke the BQ with a node inside the gcp and the service account running your instance. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I can see several ways to authenticate to BQ with key files and keys in your crate. Those do not work for us as we do not want to manage keys.
I would like to authenticate via JWT token against the BQ scope (https://bigquery.googleapis.com). Did I miss it or is there a way to use JWT tokens of SA to authenticate? Or any workaround?
Big thanks!
Beta Was this translation helpful? Give feedback.
All reactions