[ansible] Example hosts file to be explicit about pulling passwords,keys from env vars (#65)

* Updated example hosts file to be explicit about pulling passwords,keys from env vars.

* Updated changelog.

* Update CHANGELOG.md

Co-authored-by: Ram <1331672+chukka@users.noreply.github.com>
This commit is contained in:
Jeff Fry
2020-11-19 08:10:42 -08:00
committed by GitHub
parent 36762c7848
commit ddaa30af90
5 changed files with 17 additions and 17 deletions

View File

@@ -13,6 +13,6 @@ all:
db_driver: "org.postgresql.Driver"
db_url: "postgres://10.0.0.5:5432/xraydb?sslmode=disable"
db_user: "xray"
db_password: "xray"
db_password: "{{ lookup('env', 'xray_password') }}"
hosts:
3.17.132.222