Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/roles/iop_advisor/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@
vars:
iop_fdw_database_name: "{{ iop_advisor_database_name }}"
iop_fdw_database_user: "{{ iop_advisor_database_user }}"
iop_fdw_database_password: "{{ iop_advisor_database_password }}"
iop_fdw_remote_database_name: "{{ iop_inventory_database_name }}"
iop_fdw_remote_user: "{{ iop_inventory_database_user }}"
iop_fdw_remote_password: "{{ iop_inventory_database_password }}"
11 changes: 5 additions & 6 deletions src/roles/iop_fdw/defaults/main.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
# Required parameters - must be passed by caller
iop_fdw_database_name: ""
iop_fdw_database_user: ""
iop_fdw_database_password: ""
iop_fdw_remote_database_name: ""
iop_fdw_remote_user: ""
iop_fdw_remote_password: ""
iop_fdw_database_name: "{{ undef(hint='You must specify the FDW database name') }}"
iop_fdw_database_user: "{{ undef(hint='You must specify the FDW database user') }}"
iop_fdw_remote_database_name: "{{ undef(hint='You must specify the remote FDW database name') }}"
iop_fdw_remote_user: "{{ undef(hint='You must specify the remote FDW database user') }}"
iop_fdw_remote_password: "{{ undef(hint='You must specify the remote FDW database password') }}"

# Optional parameters - can use defaults
iop_fdw_database_host: "localhost"
Expand Down
1 change: 0 additions & 1 deletion src/roles/iop_vulnerability/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
vars:
iop_fdw_database_name: "{{ iop_vulnerability_database_name }}"
iop_fdw_database_user: "{{ iop_vulnerability_database_user }}"
iop_fdw_database_password: "{{ iop_vulnerability_database_password }}"
iop_fdw_remote_database_name: "{{ iop_inventory_database_name }}"
iop_fdw_remote_user: "{{ iop_inventory_database_user }}"
iop_fdw_remote_password: "{{ iop_inventory_database_password }}"
Expand Down