-
-
Save parberge/6d4e070c76dfa4fcb67127d9958294fb to your computer and use it in GitHub Desktop.
task with conditional that fails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: "users | Creating local user(s)" | |
user: | |
name: "{{ item }}" | |
password: "{{ def_local_user_password }}" | |
state: present | |
update_password: on_create | |
when: local_users_extra is defined | |
with_items: '{{ local_users_extra }}' | |
tags: "local_users" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment