Verify/change application region at Google App Engine

前端 未结 3 827
忘了有多久
忘了有多久 2020-12-10 11:21

I\'m creating a GAE application.

When I set my GAE PHP application as an authorized application to access my Cloud SQL instance, I get the following warning:

3条回答
  •  没有蜡笔的小新
    2020-12-10 12:10

    You can use gcloud app describe --project command to get the location. You cannot change an app's region after you set it. Refer here.

    For example:

    $ gcloud app describe --project myapp-1337
    authDomain: gmail.com
    codeBucket: staging.myapp-1337.appspot.com
    defaultBucket: myapp-1337.appspot.com
    defaultHostname: myapp-1337.appspot.com
    featureSettings:
      splitHealthChecks: true
    gcrDomain: us.gcr.io
    id: myapp-1337
    locationId: us-central
    name: apps/myapp-1337
    servingStatus: SERVING
    

提交回复
热议问题