I tried so set my compute region to "west europe" using the gcp console.
Did not work, jobs where always started in "us-central1".
Turns out, the region is hardcoded in tensorflow-cloud.
The implementation in /core/gcp.py is:
def get_region():
return "us-central1"
Please change it to use the default region from gcp, or let us pass in the region as parameter.