:source: foreman_external_usergroup.py :orphan: .. _foreman_external_usergroup_module: foreman_external_usergroup -- Manage external user groups in Foreman ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Create and delete external user groups in Foreman Requirements ------------ The below requirements are needed on the host that executes this module. - apypie Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
auth_source_ldap
string / required
Name of the authentication source to be used for this group
name
string / required
Name of the group
password
string / required
Password of the user accessing the Foreman server
server_url
string / required
URL of the Foreman server
state
string
    Choices:
  • present ←
  • absent
State of the entity in Foreman
usergroup
string / required
Name of the linked usergroup
username
string / required
Username accessing the Foreman server
validate_certs
boolean
    Choices:
  • no
  • yes ←
Whether or not to verify the TLS certificates of the Foreman server

aliases: verify_ssl

Examples -------- .. code-block:: yaml+jinja - name: Create an external user group foreman_external_usergroup: name: test auth_source_ldap: "My LDAP server" usergroup: "Internal Usergroup" state: present Status ------ - This module is not guaranteed to have a backwards compatible interface. *[preview]* - This module is :ref:`maintained by the Ansible Community `. *[community]* Authors ~~~~~~~ - Kirill Shirinkin (@Fodoj) .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.