community.proxmox.proxmox_sendkey module – Send key presses to a Proxmox VM console
Note
This module is part of the community.proxmox collection (version 1.5.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.proxmox.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.proxmox.proxmox_sendkey.
New in community.proxmox 1.5.0
Synopsis
Uses the Proxmox API to send a sequence of key presses to the console of a VM.
Keys can be specified explicitly or derived from a plain text string.
Requirements
The below requirements are needed on the host that executes this module.
proxmoxer >= 2.0
requests
Parameters
Parameter |
Comments |
|---|---|
Specify the target host of the Proxmox VE cluster. Uses the |
|
Specify the password to authenticate with. Uses the |
|
Specify the target port of the Proxmox VE cluster. Uses the |
|
Specify the token ID. Uses the |
|
Specify the token secret. Uses the |
|
Specify the user to authenticate with. Uses the |
|
Delay in seconds between each key press. Default: |
|
List of keys or key sequence to send in order. Each item must follow the qemu key naming format such as You can specify either |
|
The unique name of the VM. |
|
Raw string that will be transformed to the corresponding key presses Only ASCII-characters are supported. before sending. You can specify either |
|
If This should only be used on personally controlled sites using self-signed certificates. Uses the Choices:
|
|
The unique ID of the VM. Takes precedence over |
Attributes
Attribute |
Support |
Description |
|---|---|---|
Action group: community.proxmox.proxmox |
Use |
|
Support: none |
Can run in |
|
Support: none |
Will return details on what has changed (or possibly needs changing in |
Notes
Note
Keys must match the qemu key names listed in QEMU ui.QKeyCode.
Examples
- name: Send Ctrl+Alt+Delete to a Windows VM
proxmox_sendkey:
api_host: proxmoxhost
api_user: root@pam
api_password: password123
name: win-test
keys_send:
- ctrl-alt-delete
- name: Type a login string into a Linux VM console
proxmox_sendkey:
api_host: proxmoxhost
api_user: root@pam
api_password: password123
vmid: 101
string_send: |
root
P@ssw0rd
delay: 1.0
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Number of keys that were sent to the VM console. Returned: success Sample: |
|
Number of sent keys that were sent to the VM console. Returned: success Sample: |
|
List of sent keys that were sent to the VM console. Returned: success Sample: |
|
The VM vmid. Returned: success Sample: |