You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
651 B
17 lines
651 B
---
|
|
|
|
- name: Fail if invalid username
|
|
ansible.builtin.fail:
|
|
msg: "Empty usernames values are not allowed ({{ user }})"
|
|
when: not (user.username | default(''))
|
|
|
|
- name: Fail if invalid initial_password for user - {{ user.username }}
|
|
ansible.builtin.fail:
|
|
msg: "Empty initial_password values are not allowed"
|
|
when: not (user.initial_password | default(''))
|
|
|
|
- name: Fail if invalid initial_type for user - {{ user.username }}
|
|
ansible.builtin.fail:
|
|
msg: "User initial_type `{{ user.initial_type | default('undefined') }}` is not supported"
|
|
when: user.initial_type | default('undefined') not in ['admin', 'user', 'bot', 'support']
|