theforeman.foreman.user module – Manage Users
Note
This module is part of the theforeman.foreman collection (version 3.6.0).
To install it, use: ansible-galaxy collection install theforeman.foreman
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: theforeman.foreman.user
.
New in version 1.0.0: of theforeman.foreman
Synopsis
Create, update, and delete users
Requirements
The below requirements are needed on the host that executes this module.
requests
Parameters
Parameter |
Comments |
---|---|
Whether or not the user is an administrator Choices:
|
|
Authentication source where the user exists |
|
The location that the user uses by default |
|
The organizxation that the user uses by default |
|
Description of the user |
|
First name of the user |
|
Last name of the user |
|
The language locale for the user Choices:
|
|
List of locations the entity should be assigned to |
|
Name of the user |
|
Email address of the user Required when creating a new user |
|
List of organizations the entity should be assigned to |
|
Password of the user accessing the Foreman server. If the value is not specified in the task, the value of environment variable |
|
List of roles assigned to the user |
|
URL of the Foreman server. If the value is not specified in the task, the value of environment variable |
|
State of the entity Choices:
|
|
Timezone for the user If blank it will use the browser timezone. Choices:
|
|
Password for the user. When this parameter is set, the module will not be idempotent. |
|
Username accessing the Foreman server. If the value is not specified in the task, the value of environment variable |
|
Whether or not to verify the TLS certificates of the Foreman server. If the value is not specified in the task, the value of environment variable Choices:
|
Examples
- name: Create a user
theforeman.foreman.user:
name: test
firstname: Test
lastname: Userson
mail: test.userson@example.com
description: Dr. Test Userson
admin: no
user_password: s3cret
default_location: Test Location
default_organization: Test Organization
auth_source: Internal
timezone: Stockholm
locale: sv_SE
roles:
- Manager
locations:
- Test Location
organizations:
- Test Organization
state: present
- name: Update a user
theforeman.foreman.user:
name: test
firstname: Tester
state: present
- name: Change password
theforeman.foreman.user:
name: test
user_password: newp@ss
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Final state of the affected entities grouped by their type. Returned: success |
|
List of users. Returned: success |