When setting up the default pipeline on GCP and running terraform plan with bigquery specific var-file, i.e.
terraform plan -var-file=bigquery.terraform.tfvars
there is error about missing postgres variables (Error: No value for required variable), namely for postgres_db_name, postgres_db_username, postgres_db_password. As those don't have defaults in variables.tf, a workaround was to provide dummy values for them in the bigquery tfvars file.
When setting up the default pipeline on GCP and running
terraform planwith bigquery specific var-file, i.e.there is error about missing postgres variables (
Error: No value for required variable), namely forpostgres_db_name,postgres_db_username,postgres_db_password. As those don't have defaults invariables.tf, a workaround was to provide dummy values for them in the bigquery tfvars file.