[google-appengine] Re: App Engine Flexible: Where to store env-dependent configuration and secrets?

2017-03-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Storing your environment data or secrets in Datastore, in a bucket using GCS may be rather considered as the usual thing to do in this environment. More about the encryption capabilities of the platform can be read in the "Encryption at Rest" document

Re: [google-appengine] Re: App Engine Flexible: Where to store env-dependent configuration and secrets?

2017-03-18 Thread Jeff Schnitzer
I can tell you what I do (in the standard env): * Dev environment credentials are stored in source code. Every developer needs access to these, might as well make it easy. * Production/staging environment credentials are stored in a standalone git repo and merged by the build script. I find thi