Skip to content

Instantly share code, notes, and snippets.

@jkkor
jkkor / tasks.yml
Created January 9, 2024 13:03 — forked from corncobble/tasks.yml
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