community.vmware.vmware_host_iscsi module – Manage the iSCSI configuration of ESXi host
Note
This module is part of the community.vmware collection (version 5.9.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 community.vmware.
To use it in a playbook, specify: community.vmware.vmware_host_iscsi.
Synopsis
- In this module, can manage the iSCSI configuration of ESXi host 
Parameters
| Parameter | Comments | 
|---|---|
| The ESXi hostname on which to change iSCSI settings. | |
| The hostname or IP address of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable  | |
| The iSCSI configs. This parameter is required if  | |
| The new value for the alias of the adapter. Default:  | |
| CHAP authentication parent settings for iSCSI. | |
| Whether to enable CHAP authentication. Choices: 
 | |
| The preference for CHAP or non-CHAP protocol of CHAP if CHAP is enabled. Choices: 
 | |
| CHAP user name if CHAP is enabled. Default:  | |
| The secret password of CHAP if CHAP is enabled. | |
| The preference for CHAP or non-CHAP protocol of Mutual-CHAP if CHAP is enabled. Choices: 
 | |
| The user name that the target needs to use to authenticate with the initiator if Mutual-CHAP is enabled. Default:  | |
| The secret password of mutual CHAP if Mutual-CHAP is enabled. | |
| Force port bind VMkernels to be removed. Choices: 
 | |
| The name for the iSCSI HBA adapter. This is iSCSI qualified name. | |
| The list of the VMkernels if use port bindings. Default:  | |
| The iSCSI dynamic target settings. | |
| The IP address or hostname of the storage device. | |
| CHAP authentication settings of a dynamic target for iSCSI. | |
| Whether to enable CHAP authentication. Choices: 
 | |
| The preference for CHAP or non-CHAP protocol of CHAP if CHAP is enabled. Choices: 
 | |
| Whether or not to inherit CHAP settings from the parent settings. Choices: 
 | |
| CHAP user name if CHAP is enabled. Default:  | |
| The secret password of CHAP if CHAP is enabled. | |
| The preference for CHAP or non-CHAP protocol of Mutual-CHAP if CHAP is enabled. Choices: 
 | |
| Whether or not to inherit Mutual-CHAP settings from the parent settings. Choices: 
 | |
| The user name that the target needs to use to authenticate with the initiator if Mutual-CHAP is enabled. Default:  | |
| The secret password of mutual CHAP if Mutual-CHAP is enabled. | |
| The TCP port of the storage device. If not specified, the standard default of 3260 is used. Default:  | |
| The iSCSI static target settings. | |
| The IP address or hostname of the storage device. | |
| CHAP authentication settings of a static target for iSCSI. | |
| Whether to enable CHAP authentication. Choices: 
 | |
| The preference for CHAP or non-CHAP protocol of CHAP if CHAP is enabled. Choices: 
 | |
| Whether or not to inherit CHAP settings from the parent settings. Choices: 
 | |
| CHAP user name if CHAP is enabled. Default:  | |
| The secret password of CHAP if CHAP is enabled. | |
| The preference for CHAP or non-CHAP protocol of Mutual-CHAP if CHAP is enabled. Choices: 
 | |
| Whether or not to inherit Mutual-CHAP settings from the parent settings. Choices: 
 | |
| The user name that the target needs to use to authenticate with the initiator if Mutual-CHAP is enabled. Default:  | |
| The secret password of mutual CHAP if Mutual-CHAP is enabled. | |
| The name of the iSCSI target to connect to. | |
| The TCP port of the storage device. If not specified, the standard default of 3260 is used. Default:  | |
| The iSCSI adapter name. | |
| The password of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable  | |
| The port number of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable  Default:  | |
| Address of a proxy that will receive all HTTPS requests and relay them. The format is a hostname or a IP. If the value is not specified in the task, the value of environment variable  | |
| Port of the HTTP proxy that will receive all HTTPS requests and relay them. If the value is not specified in the task, the value of environment variable  | |
| If set to  If set to  If set to  If set to  If set to  Choices: 
 | |
| The username of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable  | |
| Allows connection when SSL certificates are not valid. Set to  If the value is not specified in the task, the value of environment variable  Choices: 
 | 
Notes
Note
- All modules requires API write access and hence is not supported on a free ESXi license. 
- All variables and VMware object names are case sensitive. 
Examples
- name: Enable iSCSI of ESXi
  community.vmware.vmware_host_iscsi:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    esxi_hostname: "{{ esxi_hostname }}"
    state: enabled
- name: Add a dynamic target to iSCSI config of ESXi
  community.vmware.vmware_host_iscsi:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    esxi_hostname: "{{ esxi_hostname }}"
    iscsi_config:
      vmhba_name: vmhba65
      send_target:
        address: "{{ send_target_address }}"
    state: present
- name: Add a static target to iSCSI config of ESXi
  community.vmware.vmware_host_iscsi:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    esxi_hostname: "{{ esxi_hostname }}"
    iscsi_config:
      vmhba_name: vmhba65
      static_target:
        iscsi_name: iqn.2011-08.com.xxxxxxx:as6104t-8c3e9d.target001
        address: "{{ send_target_address }}"
    state: present
- name: Add VMKernels to iSCSI config of ESXi
  community.vmware.vmware_host_iscsi:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    esxi_hostname: "{{ esxi_hostname }}"
    iscsi_config:
      vmhba_name: vmhba65
      port_bind:
        - vmk0
        - vmk1
    state: present
- name: Use CHAP authentication
  community.vmware.vmware_host_iscsi:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    esxi_hostname: "{{ esxi_hostname }}"
    iscsi_config:
      vmhba_name: vmhba65
      authentication:
        chap_auth_enabled: true
        chap_authentication_type: chapPreferred
        chap_name: chap_user_name
        chap_secret: secret
    state: present
- name: Remove a dynamic target from iSCSI config of ESXi
  community.vmware.vmware_host_iscsi:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    esxi_hostname: "{{ esxi_hostname }}"
    iscsi_config:
      vmhba_name: vmhba65
      send_target:
        address: "{{ send_target_address }}"
    state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| Parameter return when system defaults config is changed. Returned: changed Sample:  | 
