Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- {%- from 'icinga2/map.jinja' import icinga2 with context %}
- {%- set fqdn = salt.grains.get('fqdn') -%}
-
- {% if icinga2.get("parent_zone") is not None -%}
- object Zone "{{ icinga2.get("parent_zone") }}" {
- endpoints = [
- {{ icinga2.parent_endpoints }}
- ]
- }
- {% endif -%}
-
- object Zone "{{ icinga2.get("zone", fqdn) }}" {
- {% if icinga2.get("parent_zone") is not None %}parent = "{{ icinga2.get("parent_zone") }}"{% endif -%}
- endpoints = [
- "{{ fqdn }}"
- ]
- }
-
- object Endpoint "{{ fqdn }}" {
- }
-
- {% if icinga2.get("parent_endpoints") is not None -%}
- {% for parent_endpoint in icinga2.get("parent_endpoints") -%}
- object Endpoint "{{ parent_endpoint }}" {
- }
- {% endfor -%}
- {% endif -%}
-
- /* sync global commands */
- object Zone "global-templates" {
- global = true
- }
-
- object Zone "director-global" {
- global = true
- }
|