Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion roles/os_projects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ Each item should be a dict containing the following items:
- `name`: The name of the user.
- `description`: User name/description (optional)
- `email`: User email address (optional)
- `password`: The user's password. This is not updated after creation.
- `password`: The user's password (optional). This is not updated after
creation.
- `roles`: Optional list of roles to assign to the user in the project.
- `domain_roles`: Optional list of roles to assign to the user in the user
domain.
Expand Down
2 changes: 1 addition & 1 deletion roles/os_projects/tasks/users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name: "{{ item.name }}"
description: "{{ item.description | default(omit) }}"
email: "{{ item.email | default(omit) }}"
password: "{{ item.password }}"
password: "{{ item.password | default(omit) }}"
default_project: "{{ project.name }}"
domain: "{{ domain_is_id | ternary(project.user_domain, os_projects_domain_to_id[project.user_domain]) }}"
state: present
Expand Down