Skip to content

Commit

Permalink
Loop labels to name of object
Browse files Browse the repository at this point in the history
  • Loading branch information
MallocArray committed Dec 13, 2024
1 parent 1785c91 commit a3c2993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion roles/controller_credential_types/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
loop: "{{ __credentialtypes_job_async.results }}"
loop_control:
loop_var: __credentialtypes_job_async_result_item
label: "{{ __operation.verb }} Controller Credential Type {{ __credentialtypes_job_async_result_item }} | Wait for finish the credential type {{ __operation.action }}"
label: "{{ __operation.verb }} Controller Credential Type {{ __credentialtypes_job_async_result_item.__controller_credential_type_item.name }} | Wait for finish the credential type {{ __operation.action }}"
when: not ansible_check_mode and __credentialtypes_job_async_result_item.ansible_job_id is defined
no_log: "{{ controller_configuration_credential_types_secure_logging }}"
vars:
Expand Down
1 change: 1 addition & 0 deletions roles/controller_workflow_job_templates/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
loop: "{{ controller_workflows | default(workflow_job_templates) }}"
loop_control:
loop_var: __workflow_loop_item
label: "Workflow {{ __workflow_loop_item.name }}"
when:
- __workflow_loop_item.simplified_workflow_nodes is defined
- (__workflow_loop_item.state | default('present')) == "present"
Expand Down

0 comments on commit a3c2993

Please sign in to comment.