8 lines
243 B
YAML
8 lines
243 B
YAML
---
|
|
- name: Download netbox
|
|
ansible.builtin.get_url:
|
|
url: "https://github.com/netbox-community/netbox/archive/refs/tags/v{{ netbox_version }}.tar.gz"
|
|
dest: "/tmp/netbox-{{ netbox_version }}"
|
|
checksum: "{{ netbox_checksum }}"
|
|
...
|