cloudfoundry uaa - Placeholders within UAA_CONFIG_YAML environment variable -
i'm trying set smtp settings within uaa_config_yaml section of manifest.
smtp: host: ${vcap.services.smtpdev.credentials.hostname:localhost} port: 2525 user: ${vcap.services.smtpdev.credentials.username:user} password: ${vcap.services.smtpdev.credentials.password:password} this doesn't work yet default of localhost being picked up. if provide invalid placeholder throws error.
the way have done it, have set uaa_config_path environment variable points location of yaml file. settings provided follows: smtp: host: smtp.gmail.com port: <port_number> auth: true starttls.enable: false user: <username> password: <password> these values getting picked uaa. please let me know if helpful.
Comments
Post a Comment