community.vmware.vmware_host_powerstate (4.2.0) — module

Manages power states of host systems in vCenter

Authors: Abhijeet Kasurde (@Akasurde)

Install collection

Install with ansible-galaxy collection install community.vmware:==4.2.0


Add to requirements.yml

  collections:
    - name: community.vmware
      version: 4.2.0

Description

This module can be used to manage power states of host systems in given vCenter infrastructure.

User can set power state to 'power-down-to-standby', 'power-up-from-standby', 'shutdown-host' and 'reboot-host'.

State 'reboot-host', 'shutdown-host' and 'power-down-to-standby' are not supported by all the host systems.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the state of a host system to reboot
  community.vmware.vmware_host_powerstate:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    esxi_hostname: '{{ esxi_hostname }}'
    state: reboot-host
  delegate_to: localhost
  register: reboot_host
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the state of a host system to power down to standby
  community.vmware.vmware_host_powerstate:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    esxi_hostname: '{{ esxi_hostname }}'
    state: power-down-to-standby
  delegate_to: localhost
  register: power_down
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the state of all host systems from cluster to reboot
  community.vmware.vmware_host_powerstate:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    cluster_name: '{{ cluster_name }}'
    state: reboot-host
  delegate_to: localhost
  register: reboot_host

Inputs

    
port:
    default: 443
    description:
    - The port number of the vSphere vCenter or ESXi server.
    - If the value is not specified in the task, the value of environment variable E(VMWARE_PORT)
      will be used instead.
    type: int

force:
    default: false
    description:
    - This parameter specify if the host should be proceeding with user defined powerstate
      regardless of whether it is in maintenance mode.
    - If O(state=reboot-host) and O(force=true), then host system is rebooted regardless
      of whether it is in maintenance mode.
    - If O(state=shutdown-host) and O(force=true), then host system is shutdown regardless
      of whether it is in maintenance mode.
    - If O(state=power-down-to-standby) and O(force=true), then all powered off VMs will
      evacuated.
    - Not applicable if O(state=power-up-from-standby).
    type: bool

state:
    choices:
    - power-down-to-standby
    - power-up-from-standby
    - shutdown-host
    - reboot-host
    default: shutdown-host
    description:
    - Set the state of the host system.
    type: str

timeout:
    default: 600
    description:
    - This parameter defines timeout for O(state=power-down-to-standby) or O(state=power-up-from-standby).
    - Ignored if O(state=reboot-host) or O(state=shutdown-host).
    - This parameter is defined in seconds.
    type: int

hostname:
    description:
    - 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 E(VMWARE_HOST)
      will be used instead.
    type: str

password:
    aliases:
    - pass
    - pwd
    description:
    - The password of the vSphere vCenter or ESXi server.
    - If the value is not specified in the task, the value of environment variable E(VMWARE_PASSWORD)
      will be used instead.
    type: str

username:
    aliases:
    - admin
    - user
    description:
    - The username of the vSphere vCenter or ESXi server.
    - If the value is not specified in the task, the value of environment variable E(VMWARE_USER)
      will be used instead.
    type: str

proxy_host:
    description:
    - 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 E(VMWARE_PROXY_HOST)
      will be used instead.
    required: false
    type: str

proxy_port:
    description:
    - 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 E(VMWARE_PROXY_PORT)
      will be used instead.
    required: false
    type: int

cluster_name:
    description:
    - Name of the cluster from which all host systems will be used.
    - This is required parameter if O(esxi_hostname) is not specified.
    type: str

esxi_hostname:
    description:
    - Name of the host system to work with.
    - This is required parameter if O(cluster_name) is not specified.
    type: str

validate_certs:
    default: true
    description:
    - Allows connection when SSL certificates are not valid. Set to V(false) when certificates
      are not trusted.
    - If the value is not specified in the task, the value of environment variable E(VMWARE_VALIDATE_CERTS)
      will be used instead.
    type: bool

Outputs

result:
  description: metadata about host system's state
  returned: always
  sample:
    esxi01:
      error: ''
      msg: power down 'esxi01' to standby
  type: dict