Note
This plugin is part of the netapp_eseries.santricity collection.
To install it use: ansible-galaxy collection install netapp_eseries.santricity
.
To use it in a playbook, specify: netapp_eseries.santricity.na_santricity_iscsi_target
.
Parameter | Choices/Defaults | Comments |
---|---|---|
api_password string / required | The password to authenticate with the SANtricity Web Services Proxy or Embedded Web Services API. | |
api_url string / required | The url to the SANtricity Web Services Proxy or Embedded Web Services API. Example https://prod-1.wahoo.acme.com:8443/devmgr/v2 | |
api_username string / required | The username to authenticate with the SANtricity Web Services Proxy or Embedded Web Services API. | |
chap_secret string | Enable Challenge-Handshake Authentication Protocol (CHAP), utilizing this value as the password. When this value is specified, we will always trigger an update (changed=True). We have no way of verifying whether or not the password has changed. The chap secret may only use ascii characters with values between 32 and 126 decimal. The chap secret must be no less than 12 characters, but no greater than 57 characters in length. The chap secret is cleared when not specified or an empty string. aliases: chap, password | |
name string | The name/alias to assign to the iSCSI target. This alias is often used by the initiator software in order to make an iSCSI target easier to identify. aliases: alias | |
ping boolean |
| Enable ICMP ping responses from the configured iSCSI ports. |
ssid string | Default: 1 | The ID of the array to manage. This value must be unique for each array. |
unnamed_discovery boolean |
| When an initiator initiates a discovery session to an initiator port, it is considered an unnamed discovery session if the iSCSI target iqn is not specified in the request. This option may be disabled to increase security if desired. |
validate_certs boolean |
| Should https certificates be validated? |
Note
- name: Enable ping responses and unnamed discovery sessions for all iSCSI ports na_santricity_iscsi_target: ssid: "1" api_url: "https://192.168.1.100:8443/devmgr/v2" api_username: "admin" api_password: "adminpass" validate_certs: true name: myTarget ping: true unnamed_discovery: true - name: Set the target alias and the CHAP secret na_santricity_iscsi_target: ssid: "1" api_url: "https://192.168.1.100:8443/devmgr/v2" api_username: "admin" api_password: "adminpass" validate_certs: true name: myTarget chap: password1234
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
alias string | on success | The alias assigned to the iSCSI target. Sample: myArray |
iqn string | on success | The iqn (iSCSI Qualified Name), assigned to the iSCSI target. Sample: iqn.1992-08.com.netapp:2800.000a132000b006d2000000005a0e8f45 |
msg string | on success | Success message Sample: The iSCSI target settings have been updated. |
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/netapp_eseries/santricity/na_santricity_iscsi_target_module.html