dataflow list
I want to change instance group location from asia-northeast1-a(zonal) to asia-norhteast1(regional) but dataflow job automatically select single zone.
I wrote terraform code below as reference but maybe this is not a terraform issue because it became the same issue when I create dataflow manually.
resource "google_dataflow_job" "to_data_source" {
count = 1
name = "to-data-source"
template_gcs_path = "gs://dataflow-templates/latest/Cloud_PubSub_to_Avro"
temp_gcs_location = "gs://foobar/foo"
lifecycle {
create_before_destroy = true
}
max_workers = 5
on_delete = "drain"
machine_type = "n1-standard-1"
additional_experiments = ["enable_stackdriver_agent_metrics"]
}
google_dataflow_job
uses provider zone.
please help me. thank you for reading.