chore 📦: Update Proxmox API host to use IP address instead of node name

Changed the `node` parameter in the Proxmox API setup to use the IP address directly, replacing the previously hardcoded node name. This change improves consistency and reduces potential issues with node name changes.
This commit is contained in:
2025-11-01 18:18:11 +01:00
parent 07d18e1984
commit 7b705d21de

View File

@@ -23,7 +23,7 @@
- name: Create lxc container
community.proxmox.proxmox:
vmid: 200
node: "{{ node_ip }}"
node: "https://{{ node_ip }}"
api_user: root@pam
api_password: "{{ proxmox_password }}"
api_host: "https://{{ node_ip }}"