forked from ANXS/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Places test variables inside
vars/test.yml
All variables inside the playbook's `vars:` where being overwritten by those on `defaults/main.yml`
- Loading branch information
1 parent
c9dd71a
commit 7db5a39
Showing
2 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
- hosts: all | ||
vars_files: | ||
- 'defaults/main.yml' | ||
vars: | ||
postgresql_databases: | ||
- name: foobar | ||
postgresql_users: | ||
- name: baz | ||
pass: pass | ||
postgresql_user_privileges: | ||
- name: baz | ||
db: foobar | ||
- defaults/main.yml | ||
- vars/test.yml | ||
tasks: | ||
- include: 'tasks/main.yml' | ||
- include: tasks/main.yml | ||
handlers: | ||
- include: 'handlers/main.yml' | ||
- include: handlers/main.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
blah: one | ||
postgresql_databases: | ||
- name: foobar | ||
postgresql_users: | ||
- name: baz | ||
pass: pass | ||
postgresql_user_privileges: | ||
- name: baz | ||
db: foobar |