Question: how can I set application secrets to make them available inapplication.yml ?
In heroku, I did this simply by setting the environment variable for dyno and getting it as:
server:
port: ${PORT}
security:
user:
password: ${USERPASSWORD}
eureka:
client:
register-with-eureka: false
fetch-registry: false
instance:
hostname: localhost
securePortEnabled: true
password: ${EUREKAPASSWORD}
How to achieve this in the Google App Engine? I tried with datastore:

It is not clear, I do not know how to embed these values ββin my * .yml file.
EDIT:
Another important thing to add. I use the plugin maven appengineto deploy my application through the CI pipeline, so I donβt have the ability to click a app.yamlfile on App Engine
source
share