Skip to content
Snippets Groups Projects
Commit 03788e17 authored by Christian Berendt's avatar Christian Berendt
Browse files

Set "no_log" for "databases user and setting permissions" tasks


At the moment the "databases user and setting permissions" task for
designate and nova leaks the database_password because of the use
of with_items:

---snip---
TASK [nova : Creating Nova databases user and setting permissions] *********************************************************
ok: [x -> y] => (item={u'database_password': u'password', u'database_name': u'nova', u'database_username': u'nova'})
ok: [x -> y] => (item={u'database_password': u'password', u'database_name': u'nova_cell0', u'database_username': u'nova'})
ok: [x -> y] => (item={u'database_password': u'password', u'database_name': u'nova_api', u'database_username': u'nova_api'})
---snap---

Change-Id: I141e4153223c8772c82a31d81e58057ce266c0b9
Co-authored-by: default avatarBernd Müller <mueller@b1-systems.de>
parent b5cf164c
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
database_password: "{{ designate_pool_manager_database_password }}" database_password: "{{ designate_pool_manager_database_password }}"
when: when:
- not use_preconfigured_databases | bool - not use_preconfigured_databases | bool
no_log: true
- include_tasks: bootstrap_service.yml - include_tasks: bootstrap_service.yml
when: database.changed or use_preconfigured_databases | bool when: database.changed or use_preconfigured_databases | bool
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
when: when:
- database.changed - database.changed
- not use_preconfigured_databases | bool - not use_preconfigured_databases | bool
no_log: true
- include_tasks: bootstrap_service.yml - include_tasks: bootstrap_service.yml
when: database.changed or use_preconfigured_databases | bool when: database.changed or use_preconfigured_databases | bool
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment