Do not log passwords

This prevents data to be leaked into the callback plugin.

Change-Id: I1f870fe82d5532e3d3380a9bdd1cd6842e97f5f7
This commit is contained in:
Jesse Pretorius 2018-04-18 11:49:55 +01:00
parent e5229df4d5
commit 5efd7f380d
1 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,7 @@
until: add_service|success
retries: 5
delay: 10
no_log: True
# Add a role to the user
- name: Ensure cinder user to admin role
@ -48,6 +49,7 @@
until: add_service|success
retries: 5
delay: 10
no_log: True
# Create a service
- name: Ensure cinder service
@ -83,6 +85,7 @@
type: "{{ cinder_service_v3_type }}"
description: "{{ cinder_service_v3_description }}"
state: present
no_log: True
# Create an endpoint
- name: Ensure cinder endpoint
@ -120,3 +123,4 @@
publicurl: "{{ cinder_service_v3_publicurl }}"
internalurl: "{{ cinder_service_v3_internalurl }}"
adminurl: "{{ cinder_service_v3_adminurl }}"
no_log: True