From a2389df94dbf32c761e12355afaf06417a4f5772 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 18 Apr 2018 11:39:07 +0100 Subject: [PATCH] Do not log passwords This prevents data to be leaked into the callback plugin. Change-Id: I25a91ab68d995a9ad91c9e4abc28b25cac513bb6 (cherry picked from commit 1928b2795880a9b685b95f496130f27393087508) --- tasks/gnocchi_identity_setup.yml | 3 +++ tasks/gnocchi_service_setup.yml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/tasks/gnocchi_identity_setup.yml b/tasks/gnocchi_identity_setup.yml index d5ddf1f..d0aecdf 100644 --- a/tasks/gnocchi_identity_setup.yml +++ b/tasks/gnocchi_identity_setup.yml @@ -30,6 +30,7 @@ until: add_project|success retries: 5 delay: 10 + no_log: True # Create an admin user - name: Ensure Gnocchi user @@ -47,6 +48,7 @@ until: add_user|success retries: 5 delay: 10 + no_log: True # Add a role to the user - name: Ensure Gnocchi user maps to admin role @@ -64,3 +66,4 @@ until: add_admin_role|success retries: 5 delay: 10 + no_log: True diff --git a/tasks/gnocchi_service_setup.yml b/tasks/gnocchi_service_setup.yml index f56ef20..bff8e2a 100644 --- a/tasks/gnocchi_service_setup.yml +++ b/tasks/gnocchi_service_setup.yml @@ -29,6 +29,7 @@ until: add_service|success retries: 5 delay: 2 + no_log: True # Create an endpoint - name: Ensure Gnocchi endpoint @@ -53,3 +54,4 @@ until: add_endpoint|success retries: 5 delay: 10 + no_log: True