config template changed to jinja2 syntax for ansible

This commit is contained in:
Dirk Alders 2024-03-09 12:42:41 +01:00
parent 4afb781cf8
commit 3bc38120c4

View File

@ -10,10 +10,10 @@ GEO_POSITION = geo.gps.coordinate(lat=49.519167, lon=9.3672222)
APP_NAME = "smart_brain" APP_NAME = "smart_brain"
MQTT_SERVER = "<hostname>" MQTT_SERVER = "{{ smart_srv_brain_hostname }}"
MQTT_PORT = 1883 MQTT_PORT = 1883
MQTT_USER = "<username>" MQTT_USER = "{{ smart_srv_brain_username }}"
MQTT_PASSWORD = "<password>" MQTT_PASSWORD = "{{ smart_srv_brain_password }}"
CHRISTMAS = True CHRISTMAS = True