I am currently migrating an application to Google App Engine that relies on environment variables for various external connections. It looks like the app.yaml file is where I s
I just came across this issue for the same reason. I ended up creating aliases for each dev, and prod:
alias dev-deploy='cat dev.yaml > app.yaml; gcloud app deploy dev.yaml; rm app.yaml' alias prod-deploy='cat prod.yaml > app.yaml; gcloud app deploy; rm app.yaml'