You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/lamp_haproxy/roles/nagios/templates/dbservers.cfg.j2

25 lines
669 B

# {{ ansible_managed }}
define hostgroup {
hostgroup_name dbservers
alias Database Servers
}
{% for host in groups['dbservers'] %}
define host {
use linux-server
host_name {{ host }}
alias {{ host }}
address {{ hostvars[host].ansible_default_ipv4.address }}
hostgroups dbservers
}
{% endfor %}
#define service {
# use local-service
# hostgroup_name dbservers
# service_description MySQL Database Server
# check_command check_mysql
# notifications_enabled 0
#}