Initial commit: VM Creation done

This commit is contained in:
Lino Silva
2026-03-30 10:54:16 +01:00
commit 97e7d65f42
27 changed files with 474 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
- name: Resize disk
community.proxmox.proxmox_disk:
api_host: "{{ proxmox_api_host }}"
api_user: "{{ proxmox_api_user }}"
api_token_id: "{{ proxmox_api_token_id }}"
api_token_secret: "{{ proxmox_api_token_secret }}"
vmid: "{{ item.value.vmid }}"
disk: scsi0
size: "{{ item.value.disk }}"
state: resized
loop: "{{ vms | dict2items }}"