The google_project document says the project_id is optional.
project_id - (Optional) The project ID. If it is not provided, the provider project is used.
However, Terraform complains it is required.
gcp.tf
data "google_project" "project" {
}
output "project_number" {
value = data.google_project.project.number
}
Error: project: required field is not set
│
│ with data.google_project.project,
│ on gcp.tf line 1, in data "google_project" "project":
│ 1: data "google_project" "project" {
Please help understand if this is a documentation defect and the argument is mandatory actually.
Set the GOOGLE_PROJECT environment variable.
export GOOGLE_PROJECT=...
terraform apply
Your 'Workaround' is functionally equivalent to what the documentation suggests. Namely that the provider project should be set, i.e.:
provider "google" {
project = "..."
}
You don't include your provider config but, I assume, it doesn't include the default project to be used.
So, either|or but, somewhere you need to define the default project.
Otherwise, you should expect to get the error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With