zhmc_session – Manage HMC sessions across tasks

Synopsis

  • Create a session on the HMC for use by other ibm_zhmc modules, with action=create.

  • Delete a session on the HMC, with action=delete.

  • This module can be used in order to create an HMC session once and then use it for multiple tasks that use ibm_zhmc modules, reducing the number of HMC sessions that need to be created, to just one. When this module is not used, each ibm_zhmc module invocation will create and delete a separate HMC session.

Parameters

hmc_host

The hostname or IP address of the HMC.

required: True
type: str
hmc_auth

The authentication credentials for the HMC.

required: True
type: dict
userid

The userid (username) for creating the HMC session.

Required for action=create, not permitted for action=delete.

required: False
type: str
password

The password for creating the HMC session.

Required for action=create, not permitted for action=delete.

required: False
type: str
session_id

Session ID of the HMC session to be deleted.

Required for action=delete, not permitted for action=create.

required: False
type: 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.

Optional for action=create, not permitted for action=delete.

required: False
type: str
verify

If True (default), verify the HMC certificate as specified in the ca_certs parameter. If False, ignore what is specified in the ca_certs parameter and do not verify the HMC certificate.

Optional for action=create, not permitted for action=delete.

required: False
type: bool
default: True
action

The action to perform for the HMC session. Since an HMC session does not have a name, it is not possible to specify the desired end state in an idempotent manner, so this module uses actions:

  • create: Create a new session on the HMC and verify that the credentials are valid. Requires hmc_auth.userid and hmc_auth.password and uses hmc_auth.ca_certs and hmc_auth.verify if provided.

  • delete: Delete the specified session on the HMC. No longer existing sessions are tolerated. Requires hmc_auth.session_id.

required: True
type: str
choices: create, delete
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: False
type: str

Examples

---
# Note: The following is a sequence of tasks that demonstrates the use
#       of the zhmc_session module for one other ibm_zhmc task. The example
#       assumes that some variables named 'my_*' are set.

- name: Create an HMC session
  zhmc_session:
    hmc_host: "{{ my_hmc_host }}"
    hmc_auth:
      userid: "{{ my_hmc_userid }}"
      password: "{{ my_hmc_password }}"
      verify: true                      # optional
      ca_certs: "{{ my_certs_dir }}"    # optional
    action: create
  register: session
  no_log: true    # Protect result containing HMC session ID from being logged

- name: Example task using the previously created HMC session
  zhmc_cpc_list:
    hmc_host: "{{ my_hmc_host }}"
    hmc_auth: "{{ session.hmc_auth }}"
  register: cpc_list

- name: Delete the HMC session
  zhmc_session:
    hmc_host: "{{ my_hmc_host }}"
    hmc_auth: "{{ session.hmc_auth }}"
    action: delete
  register: session    # Just for safety in case it is used after that

Return Values

changed

Indicates if any change has been made by the module. This will always be false, since a session creation on the HMC does not count as a change.

returned: always
type: bool
msg

An error message that describes the failure.

returned: failure
type: str
hmc_auth

Credentials for the HMC session, for use by other tasks. This return value should be protected with no_log=true for action=create, since it contains the HMC session ID. For action=delete, the same structure is returned, just with null values. This can be used to reset the variable that was set for action=create.

returned: success
type: dict
sample:
{
    "ca_certs": null,
    "session_id": "xyz.........",
    "userid": "my_user",
    "verify": true
}
session_id

New HMC session ID for action=create, or null for action=delete.

type: str
ca_certs

Value of ca_certs input parameter for action=create, or null for action=delete.

type: str
verify

Value of verify input parameter for action=create, or null for action=delete.

type: bool