ansible-pilote/templates/nagios/conf.d/hosts.cfg.j2

12 lines
256 B
Text
Raw Normal View History

{{ ansible_managed | comment }}
{% for host in nagios_hosts | default([]) %}
define host {
use {{ host['use'] }}
host_name {{ host['host_name'] }}
alias {{ host['alias'] }}
address {{ host['address'] }}
}
{% endfor %}