I have an App Engine app that's attempting to connect to Redis Memcache via a serverless VPC connector. In my app.yaml
for my service, I have setup the VPC Access connector block as
vpc_access_connector:
name: 'projects/<project_name>/locations/<region>/connectors/<connector>'
with the appropriate variables filled in. This works fine for the particular project I'm currently deploying to which is our testing project, but soon I'll need to deploy this to a different project with a different region and a different connector. Is there a way to setup this connection at runtime (when I have access python side to environment variables) rather than in the app.yaml
file, or a way to pass environment variables to the name
value in the yaml here?