.. Document meta :orphan: .. Anchors .. _ansible_collections.redhat.satellite.setting_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title redhat.satellite.setting -- Manage Settings +++++++++++++++++++++++++++++++++++++++++++ .. 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.setting`. .. version_added .. versionadded:: 1.0.0 of redhat.satellite .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Manage Settings .. Aliases .. Requirements Requirements ------------ The below requirements are needed on the host that executes this module. - requests .. Options Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
name
string / required
Name of the Setting
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.
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.
value
raw
value to set the Setting to
if missing, reset to default

.. Notes .. Seealso .. Examples Examples -------- .. code-block:: yaml+jinja - name: "Set a Setting" redhat.satellite.setting: username: "admin" password: "changeme" server_url: "https://satellite.example.com" name: "http_proxy" value: "http://localhost:8088" - name: "Reset a Setting" redhat.satellite.setting: username: "admin" password: "changeme" server_url: "https://satellite.example.com" name: "http_proxy" .. 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
foreman_setting
dictionary
success
Created / Updated state of the setting



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