Skip to content

Commit

Permalink
Merge pull request #479 from redhatci/fix_additional_users
Browse files Browse the repository at this point in the history
Fix typo in var name
  • Loading branch information
tonyskapunk authored Oct 22, 2024
2 parents bb29017 + 55439df commit 41b8fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/ocp_add_users/tasks/add-users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
current_users: "{{ (_oau_secret.resources[0].data.htpasswd | default('Cg==') | b64decode).split() }}"
new_users: "{{ (_oau_new_encoded_users.content | b64decode).split() }}"
ansible.builtin.set_fact:
oau_all_users: "{{ _oau_all_users | default({}) | combine({item.split(':')[0]: item.split(':')[1]}) }}"
oau_all_users: "{{ oau_all_users | default({}) | combine({item.split(':')[0]: item.split(':')[1]}) }}"
loop: "{{ current_users + new_users }}"
loop_control:
label: "{{ item.split(':')[0] }}"
Expand Down

0 comments on commit 41b8fd6

Please sign in to comment.