Add the print_psql_db_data.yml file to the repository.
This commit is contained in:
parent
999098d272
commit
15459c625e
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
- name: Optionally print the psql_db_data contents
|
||||
ansible.builtin.import_tasks: print_psql_db_data.yml
|
||||
when: psql_db_data is defined
|
||||
- import_tasks: configure-access.yml
|
||||
when: psql_db_data is defined
|
||||
- import_tasks: manage_dbs.yml
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
- name: print_psql_db_data | Optionally print the psql_db_data contents
|
||||
run_once: true
|
||||
tags: ['postgresql', 'postgres', 'pg_db', 'pg_user']
|
||||
block:
|
||||
- name: print_psql_db_data | Print the psql_db_data values
|
||||
ansible.builtin.debug:
|
||||
var: psql_db_data
|
||||
no_log: "{{ pgsql_show_db_data }}"
|
Loading…
Reference in New Issue