.. Document meta :orphan: .. Anchors .. _ansible_collections.redhat.satellite.organization_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title redhat.satellite.organization -- Manage Organizations +++++++++++++++++++++++++++++++++++++++++++++++++++++ .. 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.organization`. .. version_added .. versionadded:: 1.0.0 of redhat.satellite .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Manage Organizations .. Aliases .. Requirements Requirements ------------ The below requirements are needed on the host that executes this module. - requests .. Options Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
description
string
Description of the Organization
label
string
Label of the Organization
name
string / required
Name of the Organization
parameters
list / elements=dictionary
Entity domain specific host parameters
name
string / required
Name of the parameter
parameter_type
string
    Choices:
  • string ←
  • boolean
  • integer
  • real
  • array
  • hash
  • yaml
  • json
Type of the parameter
value
raw / required
Value of the parameter
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.
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
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.
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 CI Organization" redhat.satellite.organization: username: "admin" password: "changeme" server_url: "https://satellite.example.com" name: "My Cool New Organization" 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.

 
organizations
list / elements=dictionary
success
List of organizations.



.. Status (Presently only deprecated) .. Authors Authors ~~~~~~~ - Eric D Helms (@ehelms) - Matthias M Dellweg (@mdellweg) ATIX AG .. Parsing errors