:source: foreman_scap_tailoring_file.py :orphan: .. _foreman_scap_tailoring_file_module: foreman_scap_tailoring_file -- Manage Foreman SCAP tailoring files using Foreman API ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Create, Update and Delete Foreman SCAP tailoring files using Foreman API. Requirements ------------ The below requirements are needed on the host that executes this module. - apypie Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
locations
list / elements=string
List of locations the entity should be assigned to
name
string / required
Name of the tailoring file.
organizations
list / elements=string
List of organizations the entity should be assigned to
original_filename
string
Original file name of the XML file.
If unset, the filename of scap_file will be used.
password
string / required
Password of the user accessing the Foreman server
scap_file
path
File containing XML DataStream content.
Required when creating a new DataStream.
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 tailoring file.
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 SCAP tailoring file foreman_scap_tailoring_file: name: "Red Hat firefox default content" scap_file: "/home/user/Downloads/ssg-firefox-ds-tailoring.xml" original_filename: "ssg-firefox-ds-tailoring.xml" organizations: - "Default Organization" locations: - "Default Location" server_url: "https://foreman.example.com" username: "admin" password: "secret" state: present - name: Update SCAP tailoring file foreman_scap_tailoring_file: name: "Red Hat firefox default content" updated_name: "Updated tailoring file name" scap_file: "/home/user/Downloads/updated-ssg-firefox-ds-tailoring.xml" original_filename: "updated-ssg-firefox-ds-tailoring.xml" organizations: - "Org One" - "Org Two" locations: - "Loc One" - "Loc Two" server_url: "https://foreman.example.com" username: "admin" password: "secret" state: present - name: Delete SCAP tailoring file foreman_scap_tailoring_file: name: "Red Hat firefox default content" server_url: "https://foreman.example.com" username: "admin" password: "secret" state: absent Status ------ - This module is not guaranteed to have a backwards compatible interface. *[preview]* - This module is :ref:`maintained by the Ansible Community `. *[community]* Authors ~~~~~~~ - Evgeni Golov (@evgeni) .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.