Files
HetznerTerra/ansible/inventory.tmpl
MichaelFisher1997 e26fdfe614
Some checks failed
Deploy Cluster / Terraform (push) Successful in 28s
Deploy Cluster / Ansible (push) Failing after 8m6s
fix: Move SSH private key setting from ansible.cfg to inventory
2026-02-28 22:53:37 +00:00

20 lines
323 B
Cheetah

[control_plane]
{% for ip in control_plane_ips %}
{{ ip }}
{% endfor %}
[workers]
{% for ip in worker_ips %}
{{ ip }}
{% endfor %}
[cluster:children]
control_plane
workers
[cluster:vars]
ansible_user=root
ansible_python_interpreter=/usr/bin/python3
ansible_ssh_private_key_file={{ private_key_file }}
k3s_version=latest