:source: katello_host_collection.py :orphan: .. _katello_host_collection_module: katello_host_collection -- Create and Manage host collections +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Create and Manage host collections Requirements ------------ The below requirements are needed on the host that executes this module. - apypie Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
description
string
Description of the host collection
name
string / required
Name of the host collection
organization
string / required
Organization that the entity is in
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
updated_name
string
New name of the host collection. When this parameter is set, the module will not be idempotent.
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 Foo host collection" katello_host_collection: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "Foo" description: "Foo host collection for Foo servers" organization: "My Cool new Organization" 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 ~~~~~~~ - Maxim Burgerhout (@wzzrd) - Christoffer Reijer (@ephracis) .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.