如何在 Google App Engine 中设置环境变量/应用机密
2022-09-03 16:01:01
问题是,如何设置应用程序机密以使其在 application.yml
中可用?
在heroku上,我只是通过为dyno设置环境变量来简单地做到这一点,并将其访问为:
server:
port: ${PORT}
security:
user:
password: ${USERPASSWORD}
eureka:
client:
register-with-eureka: false
fetch-registry: false
instance:
hostname: localhost
securePortEnabled: true
password: ${EUREKAPASSWORD}
如何在Google App Engine中实现这一目标?我正在尝试 :datastore
不幸的是,我不知道如何将这些值注入到我的*.yml文件中。
编辑:
还有一件重要的事情要补充。我正在使用插件通过CI管道部署我的应用程序,因此我无法将文件推送到应用程序引擎maven appengine
app.yaml