Skip to content

Commit

Permalink
Fix typo in var name
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyskapunk committed Oct 22, 2024
1 parent bb29017 commit 55439df
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 55439df

Please sign in to comment.