blob: f2ed0361047a074147675ae9ac7ea50344188ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: "start vm"
community.general.proxmox_kvm:
api_host: "{{ proxmox_hostname }}"
api_user: "{{ proxmox_username }}"
api_token_id: "{{ proxmox_api_token_id }}"
api_token_secret: "{{ proxmox_api_token_secret }}"
node: "{{ proxmox_node }}"
vmid: "{{ vmid | int }}"
state: started
- name: "pause execution for 3 minutes to allow vm to fully boot"
pause:
minutes: 3
|