:source: foreman_host_power.py :orphan: .. _foreman_host_power_module: foreman_host_power -- Manage Foreman hosts power state ++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Manage power state of Foreman host - This beta version can start and stop an existing foreman host and question the current power state. Requirements ------------ The below requirements are needed on the host that executes this module. - apypie Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
name
string / required
Name (FQDN) of the host

aliases: hostname
password
string / required
Password of the user accessing the Foreman server
server_url
string / required
URL of the Foreman server
state
string
    Choices:
  • on
  • start
  • off
  • stop
  • soft
  • reboot
  • cycle
  • reset
  • state ←
  • status
Desired power state
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: "Switch a host on" foreman_host_power: username: "admin" password: "changeme" server_url: "https://foreman.example.com" hostname: "test-host.domain.test" state: on - name: "Switch a host off" foreman_host_power: username: "admin" password: "changeme" server_url: "https://foreman.example.com" hostname: "test-host.domain.test" state: off - name: "Query host power state" foreman_host_power: username: "admin" password: "changeme" server_url: "https://foreman.example.com" hostname: "test-host.domain.test" state: state register: result - debug: msg: "Host power state is {{ result.power_state }}" Return Values ------------- Common return values are documented :ref:`here `, the following are the fields unique to this module: .. raw:: html
Key Returned Description
power_state
string
always
current power state of host

Sample:
off


Status ------ - This module is not guaranteed to have a backwards compatible interface. *[preview]* - This module is :ref:`maintained by the Ansible Community `. *[community]* Authors ~~~~~~~ - Bernhard Hopfenmueller (@Fobhep) ATIX AG - Baptiste Agasse (@bagasse) .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.