theforeman.foreman.user module – Manage Users
Note
This module is part of the theforeman.foreman collection (version 4.2.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
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 theforeman.foreman 1.0.0
Synopsis
- Create, update, and delete users 
Aliases: foreman_user
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: 
 | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: full | Can run in check_mode and return changed status prediction without modifying the entity | |
| Support: full | Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode | 
Examples
- name: Create a user
  theforeman.foreman.user:
    name: test
    firstname: Test
    lastname: Userson
    mail: [email protected]
    description: Dr. Test Userson
    admin: false
    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 | 
