Terraform/GCP Error: project: required field is not set
Problem 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 s