Error: Invalid BigQuery table specifier

Hello.

I am getting this error now without having changed any configuration at all (all I did was change source code that some Cloud Functions are using and the BigQuery resources aren’t a part of that).

Only relevant Google hit found:

I’m not even sure how to start fixing this. Where is the above code being referenced/called in Terraform Plan?

You could pin to an older version of the GCP provider for now:

provider "google" {
  project = "project"
  region  = "europe-west2"
  version = "2.19.0"
}

Yeah, thanks! I commented on the link I provided above and got a similar solution. Thank you!