24 lines
766 B
YAML
24 lines
766 B
YAML
---
|
|
all:
|
|
children:
|
|
proxmox_hosts:
|
|
vars:
|
|
ansible_ssh_common_args: "-o StrictHostKeyChecking=accept-new"
|
|
hosts:
|
|
helium:
|
|
ansible_host: 192.168.1.100
|
|
ansible_user: root
|
|
# First run without SSH keys:
|
|
# ansible_password: "{{ vault_proxmox_root_password }}"
|
|
neon:
|
|
ansible_host: 192.168.1.90
|
|
ansible_user: root
|
|
# ansible_password: "{{ vault_proxmox_root_password }}"
|
|
argon:
|
|
ansible_host: 192.168.1.80
|
|
ansible_user: root
|
|
# ansible_password: "{{ vault_proxmox_root_password }}"
|
|
krypton:
|
|
ansible_host: 192.168.1.70
|
|
ansible_user: root
|
|
# ansible_password: "{{ vault_proxmox_root_password }}" |