DCD-224: Fix DB password var.

This commit is contained in:
Steve Smith
2019-04-17 11:34:30 +10:00
parent 9df15ebcaf
commit ef96d81aad

View File

@@ -4,7 +4,7 @@
postgresql_user:
login_host: "{{ atl_db_host }}"
login_user: "{{ atl_db_root_user }}"
login_password: "{{ atl_db_root_user }}"
login_password: "{{ atl_db_root_password }}"
port: "{{ atl_db_port }}"
name: "{{ atl_jdbc_user }}"
password: "{{ atl_jdbc_password }}"
@@ -15,7 +15,7 @@
postgresql_db:
login_host: "{{ atl_db_host }}"
login_user: "{{ atl_db_root_user }}"
login_password: "{{ atl_db_root_user }}"
login_password: "{{ atl_db_root_password }}"
port: "{{ atl_db_port }}"
name: "{{ atl_jdbc_name }}"
owner: "{{ atl_jdbc_user }}"