.. Document meta :orphan: .. Anchors .. _ansible_collections.redhat.satellite.usergroup_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title redhat.satellite.usergroup -- Manage User Groups ++++++++++++++++++++++++++++++++++++++++++++++++ .. Collection note .. note:: This plugin is part of the `redhat.satellite collection `_ (version 2.1.2). To install it use: :code:`ansible-galaxy collection install redhat.satellite`. To use it in a playbook, specify: :code:`redhat.satellite.usergroup`. .. version_added .. versionadded:: 1.0.0 of redhat.satellite .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Create, update, and delete user groups .. Aliases .. Requirements Requirements ------------ The below requirements are needed on the host that executes this module. - requests .. Options Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
admin
boolean
    Choices:
  • no ←
  • yes
Whether or not the users in this group are administrators
name
string / required
Name of the group
password
string / required
Password of the user accessing the Foreman server.
If the value is not specified in the task, the value of environment variable SATELLITE_PASSWORD will be used instead.
roles
list / elements=string
List of roles assigned to the group
server_url
string / required
URL of the Foreman server.
If the value is not specified in the task, the value of environment variable SATELLITE_SERVER_URL will be used instead.
state
string
    Choices:
  • present ←
  • absent
State of the entity
updated_name
string
New user group name. When this parameter is set, the module will not be idempotent.
usergroups
list / elements=string
List of other groups assigned to the group
username
string / required
Username accessing the Foreman server.
If the value is not specified in the task, the value of environment variable SATELLITE_USERNAME will be used instead.
users
list / elements=string
List of users assigned to the group
validate_certs
boolean
    Choices:
  • no
  • yes ←
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 SATELLITE_VALIDATE_CERTS will be used instead.

.. Notes .. Seealso .. Examples Examples -------- .. code-block:: yaml+jinja - name: Create a user group redhat.satellite.usergroup: name: test admin: no roles: - Manager users: - myuser1 - myuser2 usergroups: - mynestedgroup state: present .. Facts .. Return values Return Values ------------- Common return values are documented :ref:`here `, the following are the fields unique to this module: .. raw:: html
Key Returned Description
entity
dictionary
success
Final state of the affected entities grouped by their type.

 
usergroups
list / elements=dictionary
success
List of usergroups.



.. Status (Presently only deprecated) .. Authors Authors ~~~~~~~ - Baptiste Agasse (@bagasse) .. Parsing errors