Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BigQuery Example SA missing BigQuery Connection User Permission #70

Open
ryanrezvani opened this issue Aug 2, 2024 · 0 comments
Open

Comments

@ryanrezvani
Copy link

I installed the BigQuery backend using the provided terraform, however I believe a permission is missing in order to run the back end on the BigQuery side, below is the error I saw:
image

Fixed by adding roles/bigquery.connectionUser :

resource "google_project_iam_member" "iam_permission_bq_connection_user" {
  project = var.project_id
  role    = "roles/bigquery.connectionUser"
  member  = format("serviceAccount:%s", google_service_account.explore-assistant-bq-sa.email)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant