:source: foreman_location.py :orphan: .. _foreman_location_module: foreman_location -- Manage Foreman Location +++++++++++++++++++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Manage Foreman Location 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 or Title of the Foreman Location
organizations
list / elements=string
List of organizations the location should be assigned to
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
parent
string
Title of a parent Location for nesting
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
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 # Create a simple location - name: "Create CI Location" foreman_location: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "My Cool New Location" organizations: - "Default Organization" state: present # Create a nested location - name: "Create Nested CI Location" foreman_location: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "My Nested location" parent: "My Cool New Location" state: present # Create a new nested location with parent included in name - name: "Create New Nested Location" foreman_location: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "My Cool New Location/New nested location" state: present # Move a nested location to another parent - name: "Create Nested CI Location" foreman_location: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "My Cool New Location/New nested location" parent: "My Cool New Location/My Nested location" 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 ~~~~~~~ - Matthias M Dellweg (@mdellweg) ATIX AG .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.