Skip to content

Commit

Permalink
library/ceph_key: set no_log on secret
Browse files Browse the repository at this point in the history
We don't need to show this information during the module execution.

Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit a3f4e2b)
  • Loading branch information
dsavineau committed Sep 24, 2020
1 parent b714e04 commit 17f2dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/ceph_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def run_module():
name=dict(type='str', required=False),
state=dict(type='str', required=False, default='present', choices=['present', 'update', 'absent', 'list', 'info', 'fetch_initial_keys']),
caps=dict(type='dict', required=False, default=None),
secret=dict(type='str', required=False, default=None),
secret=dict(type='str', required=False, default=None, no_log=True),
import_key=dict(type='bool', required=False, default=True),
dest=dict(type='str', required=False, default='/etc/ceph/'),
)
Expand Down

0 comments on commit 17f2dd8

Please sign in to comment.