-
Notifications
You must be signed in to change notification settings - Fork 721
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
Error on step 1-org during budget creation #359
Comments
Issue #353 reports the same error |
@amandakarina can you try using #281 |
@bharathkkb I've tried the version 3.58 using the
|
This error happens also in steps 2-environments and 4-projects. |
The problem is in the Instead of: terraform {
required_version = ">= 0.13"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.58"
}
google-beta = {
source = "hashicorp/google"
version = ">= 3.58"
}
}
} It should be: terraform {
required_version = ">= 0.13"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.58"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.58"
}
}
} |
During the apply of step 1-org, running locally with my user credential I've got error during budget creation.
The terraform service account was used to create the projects but it was not used to create the budgets.
Error:
The text was updated successfully, but these errors were encountered: