23 lines
471 B
Text
23 lines
471 B
Text
|
# {{ ansible_managed }}
|
||
|
|
||
|
object Endpoint "{{ icinga2_master }}" {
|
||
|
host = "{{ i2_master.ansible_facts.ansible_default_ipv4.address }}"
|
||
|
}
|
||
|
|
||
|
object Zone "master" {
|
||
|
endpoints = [ "{{ icinga2_master }}" ]
|
||
|
}
|
||
|
|
||
|
object Endpoint "{{ icinga2_agent }}" {
|
||
|
host = "{{ ansible_facts.ansible_default_ipv4.address }}"
|
||
|
}
|
||
|
|
||
|
object Zone "{{ icinga2_agent }}" {
|
||
|
endpoints = [ "{{ icinga2_agent }}" ]
|
||
|
parent = "master"
|
||
|
}
|
||
|
|
||
|
object Zone "global-templates" {
|
||
|
global = true
|
||
|
}
|