go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/examples/appengine/quotabeta/app.yaml (about) 1 runtime: go121 2 3 automatic_scaling: 4 min_idle_instances: 1 5 6 # Note: this is interpreted by gae.py, it maps the app ID being deployed to 7 # values of ${...} vars. 8 luci_gae_vars: 9 luci-quota-library-sample: 10 AUTH_SERVICE_HOST: chrome-infra-auth-dev.appspot.com 11 CONFIG_SERVICE_HOST: config.luci.app 12 FRONTEND_CLIENT_ID: 842253956169-64fagojnc1s14anho5f05c3nufer46nl.apps.googleusercontent.com 13 REDIS_DATABASE_HOST: 10.249.61.228:6379 14 VPC_CONNECTOR: projects/luci-quota-library-sample/locations/us-central1/connectors/connector 15 16 entrypoint: > 17 main 18 -auth-service-host ${AUTH_SERVICE_HOST} 19 -config-service-host ${CONFIG_SERVICE_HOST} 20 -frontend-client-id ${FRONTEND_CLIENT_ID} 21 -redis-addr ${REDIS_DATABASE_HOST} 22 -quota-admin-service-readers "all" 23 -quota-admin-service-writers "administrators" 24 25 handlers: 26 - url: /.* 27 script: auto 28 secure: always 29 30 vpc_access_connector: 31 name: ${VPC_CONNECTOR}