New in version 2.6.
The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments |
---|---|---|
cluster_name |
Name of the cluster from which all host systems will be used.
This is required parameter if
esxi_hostname is not specified. |
|
esxi_hostname |
Name of the host system to work with.
This is required parameter if
cluster_name is not specified. |
|
force |
|
This parameter specify if the host should be proceeding with user defined powerstate regardless of whether it is in maintenance mode.
If
state set to reboot-host and force as true , then host system is rebooted regardless of whether it is in maintenance mode.If
state set to shutdown-host and force as true , then host system is shutdown regardless of whether it is in maintenance mode.If
state set to power-down-to-standby and force to true , then all powered off VMs will evacuated.Not applicable if
state set to power-up-from-standby . |
hostname |
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
VMWARE_HOST will be used instead.Environment variable supported added in version 2.6.
|
|
password |
The password of the vSphere vCenter or ESXi server.
If the value is not specified in the task, the value of environment variable
VMWARE_PASSWORD will be used instead.Environment variable supported added in version 2.6.
aliases: pass, pwd |
|
port
(added in 2.5) |
Default: 443
|
The port number of the vSphere vCenter or ESXi server.
If the value is not specified in the task, the value of environment variable
VMWARE_PORT will be used instead.Environment variable supported added in version 2.6.
|
state |
|
Set the state of the host system.
|
timeout |
Default: 600
|
This parameter defines timeout for
state set to power-down-to-standby or power-up-from-standby .Ignored if
state set to reboot-host or shutdown-host .This parameter is defined in seconds.
|
username |
The username of the vSphere vCenter or ESXi server.
If the value is not specified in the task, the value of environment variable
VMWARE_USER will be used instead.Environment variable supported added in version 2.6.
aliases: user, admin |
|
validate_certs |
True
|
Allows connection when SSL certificates are not valid. Set to
false when certificates are not trusted.If the value is not specified in the task, the value of environment variable
VMWARE_VALIDATE_CERTS will be used instead.Environment variable supported added in version 2.6.
|
- name: Set the state of a host system to reboot
vmware_host_powerstate:
hostname: 192.0.2.44
username: administrator@vsphere.local
password: vmware
validate_certs: no
esxi_hostname: esxi01
state: reboot-host
delegate_to: localhost
register: reboot_host
- name: Set the state of a host system to power down to standby
vmware_host_powerstate:
hostname: 192.0.2.44
username: administrator@vsphere.local
password: vmware
validate_certs: no
esxi_hostname: power-down-to-standby
state: power-down-to-standby
delegate_to: localhost
register: power_down
- name: Set the state of all host systems from cluster to reboot
vmware_host_powerstate:
hostname: 192.0.2.44
username: administrator@vsphere.local
password: vmware
validate_certs: no
cluster_name: DC0_C0
state: reboot-host
delegate_to: localhost
register: reboot_host
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
result
dict
|
always |
metadata about host system's state
Sample:
{'esxi01': {'msg': "power down 'esxi01' to standby", 'error': ''}}
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Hint
If you notice any issues in this documentation you can edit this document to improve it.