Skip to content

Instantly share code, notes, and snippets.

@colbylol
colbylol / tasks.yml
Last active January 9, 2024 13:03
Proxmox: Create VM from cloud-init image using Ansible
---
- name: Download cloud-init image
register: image
ansible.builtin.get_url:
url: "{{ image_url }}"
dest: /tmp
mode: '0644'
force: true
- name: Install pip