-
Notifications
You must be signed in to change notification settings - Fork 991
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
Should check gcloud project Id when fetching ADCs #702
Comments
I'm running into the same issue. I noticed in my case, the project number showing up does not match the quota project's number:
Have you found a fix? |
I was able to get around it by manually setting the project in the environment variable
|
You can also configure the provider instead of using environment variables. provider "google" {
region = "europe-west10"
project = "my-project"
billing_project = "my-project"
user_project_override = true
} |
Thank you both, that workaround worked for me. That being said, since the original issue still persists, I'm sharing the Github issue I created for it for reference. Feel free to add a thumbs up for additional visibility from the product team. |
https://github.com/golang/oauth2/blob/ebe81ad83719fe3426335b22e40a1e3a76fa45c0/google/default.go#L36
Should get the quota project when fetching ADCs. This has caused
terraform apply
to fail with:despite the billing and quota project being set in gcloud.
The text was updated successfully, but these errors were encountered: