hitachivantara.vspone_object.oneobject_node.hv_kmip module – Manage KMIP servers on VSP One Object
Note
This module is part of the hitachivantara.vspone_object collection (version 1.0.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install hitachivantara.vspone_object.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: hitachivantara.vspone_object.oneobject_node.hv_kmip.
New in hitachivantara.vspone_object 1.0.0
Synopsis
- This module manages KMIP servers on Hitachi VSP One Object Node. 
Requirements
The below requirements are needed on the host that executes this module.
- python >= 3.7 
Parameters
| Parameter | Comments | 
|---|---|
| Information required to establish a connection to the system. | |
| Cluster name of the system. | |
| Interval between retries of an HTTP request. | |
| Number of times to retry an HTTP request. | |
| Timeout for HTTP requests. | |
| Id for authentication. | |
| Secret for authentication. | |
| Username for authentication. | |
| Password for authentication. | |
| Region of the system. | |
| SSL configuration. | |
| Path to the CA certificates file. Default:  | |
| Path to the CA certificate file. Default:  | |
| Whether to check the hostname. Choices: 
 | |
| Path to the client certificate file. Default:  | |
| Path to the client key file. Default:  | |
| SSL cipher to use. Default:  | |
| SSL version to use. Default:  | |
| Whether to validate SSL certificates. Choices: 
 | |
| Request parameters for managing KMIP servers. | |
| The host name or IP address of the KMIP server. | |
| A string of comma-separated cyphers to use for HTTPS connections. The default group supports interoperability with a range of commercial key managers. | |
| Whether TLS 1.2 is enabled for the KMIP server. 
 TLS v1.2 support is provided for backward compatibility only. Choices: 
 | |
| The version of the KMIP protocol assigned to the server. Default:  | |
| The user-assigned name of the KMIP server you want to add. Type up to 63 Unicode characters. The server name must be unique. | |
| The port number of the KMIP server. | |
| The UUID of the server. | |
| Set operation to  Set operation to  Set operation to  Set operation to  Choices: 
 | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: none | Determines if the module should run in check mode. | 
Examples
- name: Add KMIP server to VSP One Object
  hitachivantara.vspone_object.oneobject_node.hv_certificates:
    connection_info:
      http_request_timeout: 300
      http_request_retry_times: 3
      http_request_retry_interval_seconds: 5
      cluster_name: "your_cluster_name"
      region: "your_region"
      oneobject_node_username: "your_username"
      oneobject_node_userpass: "your_password"
      oneobject_node_client_id: "vsp-object-external-client"
    state: "present"
    spec:
      name: "test_kmip_server"
      host: "urloripaddressofkmipserver"
      port: 5696
      is_tls12_enabled: true
      kmip_protocol: "V1_3"
      https_ciphers: "TLS_RSA_WITH_AES_128_CBC_SHA256"
- name: Update a KMIP server from VSP One Object
  hitachivantara.vspone_object.oneobject_node.hv_kmip:
    connection_info:
      http_request_timeout: 300
      http_request_retry_times: 3
      http_request_retry_interval_seconds: 5
      cluster_name: "your_cluster_name"
      region: "your_region"
      oneobject_node_username: "your_username"
      oneobject_node_userpass: "your_password"
      oneobject_node_client_id: "vsp-object-external-client"
    state: "modify"
    spec:
      name: "test_kmip_server_update"
      host: "urloripaddressofkmipserver"
      port: 5696
      is_tls12_enabled: true
      kmip_protocol: "V1_3"
      https_ciphers: "TLS_RSA_WITH_AES_128_CBC_SHA256"
      uuid: "f2e39602-d960-4812-8c89-3b31212dfdca"
- name: Promote a KMIP server from VSP One Object
  hitachivantara.vspone_object.oneobject_node.hv_kmip:
    connection_info:
      http_request_timeout: 300
      http_request_retry_times: 3
      http_request_retry_interval_seconds: 5
      cluster_name: "your_cluster_name"
      region: "your_region"
      oneobject_node_username: "your_username"
      oneobject_node_userpass: "your_password"
      oneobject_node_client_id: "vsp-object-external-client"
    state: "promote"
    spec:
      name: "test_kmip_server"
- name: Delete a KMIP server from VSP One Object
  hitachivantara.vspone_object.oneobject_node.hv_kmip:
    connection_info:
      http_request_timeout: 300
      http_request_retry_times: 3
      http_request_retry_interval_seconds: 5
      cluster_name: "your_cluster_name"
      region: "your_region"
      oneobject_node_username: "your_username"
      oneobject_node_userpass: "your_password"
      oneobject_node_client_id: "vsp-object-external-client"
    state: "absent"
    spec:
      name: "test_kmip_server"
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| KMIP server and its attributes. Returned: success | |
| The host name or IP address of the KMIP server. Returned: success Sample:  | |
| A string of comma-separated cyphers. Returned: success Sample:  | |
| Whether the KMIP server is online. Returned: success Sample:  | |
| Whether the KMIP server is the primary server. Returned: success Sample:  | |
| Whether TLS v1.2 is enabled on the KMIP server. Returned: success Sample:  | |
| The version of the KMIP protocol. Returned: success Sample:  | |
| The name of the KMIP server. Returned: success Sample:  | |
| The port number of the KMIP server. Returned: success Sample:  | |
| The UUID of the server. Returned: success Sample:  | 
