tmp-iac/centos/templates/hosts.yml.tftpl
2023-07-08 13:41:40 +05:30

10 lines
219 B
Plaintext

[centos_master]
%{ for vm in master_vms ~}
${vm.name} ansible_host=${vm.ip} ansible_user=root
%{ endfor ~}
[centos_follower]
%{ for vm in follower_vms ~}
${vm.name} ansible_host=${vm.ip} ansible_user=root
%{ endfor ~}