redhat.satellite.user module – Manage Users
Note
This module is part of the redhat.satellite collection (version 4.2.0).
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 redhat.satellite
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: redhat.satellite.user
.
New in redhat.satellite 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
redhat.satellite.user:
name: test
firstname: Test
lastname: Userson
mail: test.userson@example.com
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
redhat.satellite.user:
name: test
firstname: Tester
state: present
- name: Change password
redhat.satellite.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 |