zhmc_ldap_server_definition – Manage LDAP Server Definitions
Synopsis
Gather facts about an LDAP Server Definition on an HMC of a Z system.
Create, delete, or update an LDAP Server Definition on an HMC.
Requirements
The HMC userid must have these task permissions: ‘Manage LDAP Server Definitions’.
Parameters
- hmc_host
The hostname or IP address of the HMC.
required: Truetype: str- hmc_auth
The authentication credentials for the HMC.
required: Truetype: dict- userid
The userid (username) for authenticating with the HMC. This is mutually exclusive with providing
session_id
.required: Falsetype: str- password
The password for authenticating with the HMC. This is mutually exclusive with providing
session_id
.required: Falsetype: str- session_id
HMC session ID to be used. This is mutually exclusive with providing
userid
andpassword
and can be created as described in :ref:`zhmc_session_module`.required: Falsetype: str- ca_certs
Path name of certificate file or certificate directory to be used for verifying the HMC certificate. If null (default), the path name in the ‘REQUESTS_CA_BUNDLE’ environment variable or the path name in the ‘CURL_CA_BUNDLE’ environment variable is used, or if neither of these variables is set, the certificates in the Mozilla CA Certificate List provided by the ‘certifi’ Python package are used for verifying the HMC certificate.
required: Falsetype: str- verify
If True (default), verify the HMC certificate as specified in the
ca_certs
parameter. If False, ignore what is specified in theca_certs
parameter and do not verify the HMC certificate.required: Falsetype: booldefault: True
- name
The name of the target LDAP Server Definition object.
The name is case-insensitive (but case-preserving).
required: Truetype: str- state
The desired state for the LDAP Server Definition. All states are fully idempotent within the limits of the properties that can be changed:
*
absent
: Ensures that the LDAP Server Definition does not exist.*
present
: Ensures that the LDAP Server Definition exists and has the specified properties.*
facts
: Returns the LDAP Server Definition properties.required: Truetype: strchoices: absent, present, facts- properties
Dictionary with desired properties for the LDAP Server Definition. Used for
state=present
; ignored forstate=absent|facts
. Dictionary key is the property name with underscores instead of hyphens, and dictionary value is the property value in YAML syntax. Integer properties may also be provided as decimal strings.The possible input properties in this dictionary are the properties defined as writeable in the data model for LDAP Server Definition resources (where the property names contain underscores instead of hyphens), with the following exceptions:
*
name
: Cannot be specified because the name has already been specified in thename
module parameter.Properties omitted in this dictionary will remain unchanged when the LDAP Server Definition already exists, and will get the default value defined in the data model for LDAP Server Definitions in the :term:`HMC API` when the LDAP Server Definition is being created.
required: Falsetype: dict- log_file
File path of a log file to which the logic flow of this module as well as interactions with the HMC are logged. If null, logging will be propagated to the Python root logger.
required: Falsetype: str
Examples
---
# Note: The following examples assume that some variables named 'my_*' are set.
- name: Gather facts about an LDAP Server Definition
zhmc_ldap_server_definition:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
name: "{{ my_lsd_name }}"
state: facts
register: lsd1
- name: Ensure the LDAP Server Definition does not exist
zhmc_ldap_server_definition:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
name: "{{ my_lsd_name }}"
state: absent
- name: Ensure the LDAP Server Definition exists
zhmc_ldap_server_definition:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
name: "{{ my_lsd_name }}"
state: present
properties:
description: "Example LDAP Server Definition 1"
primary_hostname_ipaddr: "10.11.12.13"
search_distinguished_name: "test_user{0}"
register: lsd1
Return Values
- changed
Indicates if any change has been made by the module. For
state=facts
, always will be false.returned: alwaystype: bool- msg
An error message that describes the failure.
returned: failuretype: str- ldap_server_definition
For
state=absent
, an empty dictionary.For
state=present|facts
, a dictionary with the resource properties of the target LDAP Server Definition.returned: successtype: dictsample:{ "backup-hostname-ipaddr": null, "bind-distinguished-name": null, "class": "ldap-server-definition", "connection-port": null, "description": "zhmc test LSD 1", "element-id": "dcb6d966-465f-11ee-80ca-00106f234c71", "element-uri": "/api/console/ldap-server-definitions/dcb6d966-465f-11ee-80ca-00106f234c71", "location-method": "pattern", "name": "zhmc_test_lsd_1", "parent": "/api/console", "primary-hostname-ipaddr": "10.11.12.13", "replication-overwrite-possible": false, "search-distinguished-name": "test_user{0}", "search-filter": null, "search-scope": null, "tolerate-untrusted-certificates": null, "use-ssl": false }
- name
LDAP Server Definition name
type: str- {property}
Additional properties of the LDAP Server Definition, as described in the data model of the ‘LDAP Server Definition’ object in the :term:`HMC API` book. The property names have hyphens (-) as described in that book.