:source: location.py :orphan: .. _location_module: location -- Manage Location +++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Manage 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 of the 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
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

Examples -------- .. code-block:: yaml+jinja # Create a simple location - name: "Create CI Location" 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" 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" 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" 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 ------ Authors ~~~~~~~ - Matthias M Dellweg (@mdellweg) ATIX AG .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.