Skip to content

Commit f16ba1d

Browse files
committed
Make user password optional
This appears to be supported by openstack.cloud.identity_user [1]. [1] https://docs.ansible.com/ansible/latest/collections/openstack/cloud/identity_user_module.html
1 parent 233a0c9 commit f16ba1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/os_projects/tasks/users.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
name: "{{ item.name }}"
1010
description: "{{ item.description | default(omit) }}"
1111
email: "{{ item.email | default(omit) }}"
12-
password: "{{ item.password }}"
12+
password: "{{ item.password | default(omit) }}"
1313
default_project: "{{ project.name }}"
1414
domain: "{{ domain_is_id | ternary(project.user_domain, os_projects_domain_to_id[project.user_domain]) }}"
1515
state: present

0 commit comments

Comments
 (0)