Is it possible? Here is my app.yaml
:
runtime: nodejs8
env_variables:
NODE_ENV: production
PORT: 8080
API_KEY: ${API_KEY}
${API_KEY}
is like a placeholder.
When I run API_KEY=xdfj212c gcloud app deploy app.yaml
command, I want to pass API_KEY=xdfj212c
to app.yaml
and replace the placeholder with
xdfj212c
.
Expect result:
runtime: nodejs8
env_variables:
NODE_ENV: production
PORT: 8080
API_KEY: xdfj212c
Or, After I run
export API_KEY=xdfj212c
gcloud app deploy
I want the same behavior.
Is this make sense for google app engine deployment workflow?