Fix zuul_json callback plugin problem with loops
When using 'with_items' in Ansible the result items of the iterations are contained in the list under the 'results' key. This can cause secrets to be leaked when they are used in a loop. Change-Id: I9e8d08f75207b362ca23457c44cc2f38ff43ac23
This commit is contained in:
parent
1e4384747d
commit
b7cbdda897
@ -5,3 +5,7 @@
|
|||||||
- debug:
|
- debug:
|
||||||
msg: setec astronomy
|
msg: setec astronomy
|
||||||
no_log: true
|
no_log: true
|
||||||
|
- debug:
|
||||||
|
msg: setec astronomy
|
||||||
|
no_log: true
|
||||||
|
with_sequence: start=0 end=2
|
||||||
|
@ -121,6 +121,15 @@ class CallbackModule(CallbackBase):
|
|||||||
" 'no_log: true' was specified for this result")
|
" 'no_log: true' was specified for this result")
|
||||||
else:
|
else:
|
||||||
clean_result = strip_internal_keys(result._result)
|
clean_result = strip_internal_keys(result._result)
|
||||||
|
|
||||||
|
for index, item_result in enumerate(
|
||||||
|
clean_result.get('results', [])):
|
||||||
|
if not item_result.get('_ansible_no_log', False):
|
||||||
|
continue
|
||||||
|
clean_result['results'][index] = dict(
|
||||||
|
censored="the output has been hidden due to the fact that"
|
||||||
|
" 'no_log: true' was specified for this result")
|
||||||
|
|
||||||
self.results[-1]['tasks'][-1]['hosts'][host.name] = clean_result
|
self.results[-1]['tasks'][-1]['hosts'][host.name] = clean_result
|
||||||
|
|
||||||
def v2_playbook_on_stats(self, stats):
|
def v2_playbook_on_stats(self, stats):
|
||||||
|
Loading…
Reference in New Issue
Block a user