Use "password" for additional Postgres databases, not "pass"

Being more explicit sounds better.
This commit is contained in:
Slavi Pantaleev
2020-12-14 00:43:03 +02:00
parent 3a037a5993
commit 46a4034d3e
4 changed files with 19 additions and 19 deletions

View File

@ -6,7 +6,7 @@
fail:
msg: "Additional database definition ({{ additional_db }} lacks a required key: {{ item }}"
when: "item not in additional_db"
with_items: "{{ ['name', 'username', 'pass'] }}"
with_items: "{{ ['name', 'username', 'password'] }}"
# The SQL statements that we'll run against Postgres are stored in a file that others can't read.
# This file will be mounted into the container and fed to Postgres.