Deprecated

Removed in None

i

Reason:Deprecated in favour of M(community.vmware.vmware_guest_boot_info) module. | Alternative:Use M(community.vmware.vmware_guest_boot_info) instead.

community.vmware.vmware_guest_boot_facts (1.18.2) — module

Gather facts about boot options for the given virtual machine

Authors: Abhijeet Kasurde (@Akasurde)

deprecated | supported by community

Install collection

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


Add to requirements.yml

  collections:
    - name: community.vmware
      version: 1.18.2

Description

Gather facts about boot options for the given virtual machine.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather facts about virtual machine's boot order and related parameters
  community.vmware.vmware_guest_boot_facts:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    name: "{{ vm_name }}"
  register: vm_boot_order_facts
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather facts about virtual machine's boot order using MoID
  community.vmware.vmware_guest_boot_facts:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    moid: "vm-42"
  register: vm_moid_boot_order_facts

Inputs

    
moid:
    description:
    - Managed Object ID of the instance to manage if known, this is a unique identifier
      only within a single vCenter instance.
    - This is required if C(name) or C(uuid) is not supplied.
    type: str

name:
    description:
    - Name of the VM to work with.
    - This is required if C(uuid) or C(moid) parameter is not supplied.
    type: str

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 C(VMWARE_PORT)
      will be used instead.
    - Environment variable support added in Ansible 2.6.
    type: int

uuid:
    description:
    - UUID of the instance to manage if known, this is VMware's BIOS UUID by default.
    - This is required if C(name) or C(moid) parameter is not supplied.
    type: str

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 C(VMWARE_HOST)
      will be used instead.
    - Environment variable support added in Ansible 2.6.
    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 C(VMWARE_PASSWORD)
      will be used instead.
    - Environment variable support added in Ansible 2.6.
    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 C(VMWARE_USER)
      will be used instead.
    - Environment variable support added in Ansible 2.6.
    type: str

name_match:
    choices:
    - first
    - last
    default: first
    description:
    - If multiple virtual machines matching the name, use the first or last found.
    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 C(VMWARE_PROXY_HOST)
      will be used instead.
    - This feature depends on a version of pyvmomi greater than v6.7.1.2018.12
    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 C(VMWARE_PROXY_PORT)
      will be used instead.
    required: false
    type: int

validate_certs:
    default: true
    description:
    - Allows connection when SSL certificates are not valid. Set to C(false) when certificates
      are not trusted.
    - If the value is not specified in the task, the value of environment variable C(VMWARE_VALIDATE_CERTS)
      will be used instead.
    - Environment variable support added in Ansible 2.6.
    - If set to C(true), please make sure Python >= 2.7.9 is installed on the given machine.
    type: bool

use_instance_uuid:
    default: false
    description:
    - Whether to use the VMware instance UUID rather than the BIOS UUID.
    type: bool

Outputs

vm_boot_facts:
  description: metadata about boot order of virtual machine
  returned: always
  sample:
    current_boot_delay: 2000
    current_boot_firmware: bios
    current_boot_order:
    - floppy
    - disk
    - ethernet
    - cdrom
    current_boot_retry_delay: 22300
    current_boot_retry_enabled: true
    current_enter_bios_setup: true
    current_secure_boot_enabled: false
  type: dict