xoxys.zigbee2mqtt_docker/templates/zigbee2mqtt/data/configuration.yaml.j2

61 lines
1.9 KiB
Plaintext
Raw Normal View History

2019-08-08 13:50:15 +02:00
#jinja2:lstrip_blocks: True
---
{{ ansible_managed | comment }}
2019-08-08 17:30:03 +02:00
homeassistant: {{ zigbee2mqtt_homeassistant_enabled }}
permit_join: {{ zigbee2mqtt_permit_join }}
2019-08-08 13:50:15 +02:00
mqtt:
2019-08-08 16:58:31 +02:00
base_topic: "{{ zigbee2mqtt_mqtt_base_topic }}"
server: "{{ zigbee2mqtt_mqtt_server }}"
2019-08-08 13:50:15 +02:00
{% if zigbee2mqtt_mqtt_user is defined and zigbee2mqtt_mqtt_user and zigbee2mqtt_mqtt_password is defined and zigbee2mqtt_mqtt_password %}
2019-08-08 16:58:31 +02:00
user: "{{ zigbee2mqtt_mqtt_user }}"
password: "{{ zigbee2mqtt_mqtt_password }}"
2019-08-08 13:50:15 +02:00
{% endif %}
2019-08-08 16:58:31 +02:00
client_id: "{{ zigbee2mqtt_mqtt_client_id }}"
reject_unauthorized: {{ zigbee2mqtt_mqtt_reject_unauthorized }}
include_device_information: {{ zigbee2mqtt_mqtt_include_device_information }}
2019-08-08 13:50:15 +02:00
{% if zigbee2mqtt_serial_port is defined and zigbee2mqtt_serial_port %}
serial:
2019-08-08 16:58:31 +02:00
port: "{{ zigbee2mqtt_serial_port }}"
disable_led: {{ zigbee2mqtt_serial_disable_led }}
2019-08-08 13:50:15 +02:00
{% endif %}
{% if zigbee2mqtt_devices_ban %}
# Ban devices from the network (by ieeeAddr)
ban:
{% for item in zigbee2mqtt_devices_ban %}
2019-08-08 16:58:31 +02:00
- "{{ item }}"
2019-08-08 13:50:15 +02:00
{% endfor %}
{% endif %}
{% if zigbee2mqtt_devices_whitelist %}
# Whitelist devices from the network (by ieeeAddr)
whitelist:
{% for item in zigbee2mqtt_devices_whitelist %}
2019-08-08 16:58:31 +02:00
- "{{ item }}"
2019-08-08 13:50:15 +02:00
{% endfor %}
{% endif %}
advanced:
2019-08-08 16:58:31 +02:00
pan_id: {{ zigbee2mqtt_pan_id }}
ext_pan_id: {{ zigbee2mqtt_ext_pan_id }}
channel: {{ zigbee2mqtt_channel }}
cache_state: {{ zigbee2mqtt_cache_state }}
2019-08-08 13:50:15 +02:00
log_level: "{{ zigbee2mqtt_log_level }}"
{% if zigbee2mqtt_network_key is defined and zigbee2mqtt_network_key %}
2019-08-08 16:58:31 +02:00
network_key: {{ zigbee2mqtt_network_key }}
2019-08-08 13:50:15 +02:00
{% endif %}
2019-08-08 16:58:31 +02:00
last_seen: "{{ zigbee2mqtt_last_seen }}"
2019-08-08 17:30:03 +02:00
elapsed: {{ zigbee2mqtt_elapsed }}
report: {{ zigbee2mqtt_report_enabled }}
2019-08-08 16:58:31 +02:00
homeassistant_discovery_topic: "{{ zigbee2mqtt_homeassistant_discovery_topic }}"
homeassistant_status_topic: "{{ zigbee2mqtt_homeassistant_status_topic }}"
2019-08-08 13:50:15 +02:00
queue:
delay: 250
simultaneously: 5
2019-08-08 22:12:23 +02:00
devices: "devices.yaml"
groups: "groups.yaml"