community.vmware.vmware_host_iscsi module – Manage the iSCSI configuration of ESXi host
Note
This module is part of the community.vmware collection (version 3.11.1).
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 Environment variable support added in Ansible 2.6. |
|
The iSCSI configs. This parameter is required if state=present or state=absent. |
|
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 Environment variable support added in Ansible 2.6. |
|
The port number of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. 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 This feature depends on a version of pyvmomi greater than v6.7.1.2018.12 |
|
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 (enabled), enable the iSCSI of ESXi if the iSCSI is disabled. If set to (disabled), disable the iSCSI of ESXi if the iSCSI is enabled. Choices:
|
|
The username of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
Allows connection when SSL certificates are not valid. Set to If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. If set to Choices:
|
Notes
Note
All modules requires API write access and hence is not supported on a free ESXi license.
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: |