Files
ansible_proxmox_VM/tasks/create-vm.yml

51 lines
1.5 KiB
YAML

---
# create-vm.yml - Create base VM on Proxmox
- name: "[VM] Check if VM already exists"
ansible.builtin.include_tasks: helpers.yml
vars:
helper_task: check_vm_exists
target_vm_id: "{{ vm_id }}"
- name: "[VM] Display VM status"
ansible.builtin.debug:
msg: "VM {{ vm_id }} ({{ hostname }}) - Status: {{ 'ALREADY EXISTS' if vm_exists else 'WILL BE CREATED' }}"
- name: "[VM] Create base VM (idempotent - skipped if already exists)"
block:
- name: "[VM] Create base VM"
ansible.builtin.command: >
qm create {{ vm_id }}
--name {{ hostname }}
--memory {{ memory }}
--cores {{ cores }}
--cpu {{ cpu_type }}
--net0 virtio,bridge={{ bridge }},macaddr={{ mac_address }}
--agent 1
register: vm_create
changed_when: vm_create.rc == 0
- name: "[VM] Verify VM was created"
ansible.builtin.include_tasks: helpers.yml
vars:
helper_task: check_vm_exists
target_vm_id: "{{ vm_id }}"
- name: "[VM] Ensure VM creation succeeded"
ansible.builtin.assert:
that:
- vm_exists | bool
fail_msg: "Failed to create VM {{ vm_id }}"
- name: "[VM] Display VM creation result"
ansible.builtin.debug:
msg: "✓ VM {{ vm_id }} created successfully"
when: not vm_exists
rescue:
- name: "[VM] Handle VM creation error"
ansible.builtin.fail:
msg: |
Failed to create VM {{ vm_id }}:
{{ ansible_failed_result | default('Unknown error') }}