Hi! We have an AppEngine and Memorystore instances placed in australia-southeast1 region. For connecting them we should create an Serverless VPC connector, but it is impossible to use 'australia-southeast1' as region:
``` gcloud compute networks vpc-access connectors create redis-vpc-connector --network default --region australia-southeast1 --range 10.9.0.0 ERROR: (gcloud.compute.networks.vpc-access.connectors.create) INVALID_ARGUMENT: Request contains an invalid argument. ``` But it is possible to create VPC connector in another region: ``` gcloud compute networks vpc-access connectors create redis-vpc-connector --network default --region asia-south1 --range 10.9.0.0/28 Create request issued for: [redis-vpc-connector] Waiting for operation [projects/***/locations/asia-south1/operations/***] to complete...done. ``` Is it permanent limitation or temporary issue? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3c53cd44-a253-46a7-b518-a6a78f2623e6%40googlegroups.com.
