Я все еще изучаю Ansible ... Хотите заменить IP-адрес в Ansible по IP-адресу клиента
hosts:
[servers]
192.168.0.1
192.168.0.18
192.168.0.19
192.168.0.23
192.168.0.129
192.168.0.130
192.168.0.149
server.yml
---
- name: Create update alive crontab
hosts: servers
become: true
tasks:
- name: a crontab job
cron:
minute="0"
job="http://xx.xx.xx.xx/alive.php?ip=clientIP"
Как изменить каждый clientIP в server.yml?