hardcode the inventory name

This commit is contained in:
Andreas Zweili 2021-10-25 22:48:17 +02:00
parent 5df2f3cb1b
commit a3ee44b511
2 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
ansible_inventory: "proxmox.py"
ansible_proxmox_url: "https://10.7.89.20:8006/"
ansible_proxmox_user: "ansible@pve"
ansible_proxmox_password: "password"

View File

@ -11,7 +11,7 @@
- name: "Get the Proxmox Ansible inventory"
ansible.builtin.get_url:
url: "https://github.com/xezpeleta/Ansible-Proxmox-inventory/raw/master/proxmox.py"
dest: "/etc/ansible/{{ ansible_inventory }}"
dest: "/etc/ansible/proxmox.py"
mode: "0777"
- name: "Copy the ansible config"
@ -22,6 +22,6 @@
- name: "Copy the inventory config"
ansible.builtin.template:
src: "{{ ansible_inventory }}.json.j2"
dest: "/etc/ansible/{{ ansible_inventory }}.json"
src: "proxmox.json.j2"
dest: "/etc/ansible/proxmox.json"
mode: "0644"