From ac063afc315f330228dfb48e8d86dcb1d3aa0a95 Mon Sep 17 00:00:00 2001 From: Stefan Heinrichsen Date: Thu, 26 Jan 2023 20:16:23 +0100 Subject: [PATCH] moved various passwords to secrets.yaml (and changed them ;-) --- unhb-clock.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/unhb-clock.yaml b/unhb-clock.yaml index 0f056fd..df031fb 100644 --- a/unhb-clock.yaml +++ b/unhb-clock.yaml @@ -10,10 +10,11 @@ logger: # Enable Home Assistant API api: encryption: - key: "HzC8U2bilNubXw3t8wA1iH7+5LtNJ+kFY60WcU7NleE=" + key: !secret clock01_hass_api ota: - password: "a834c6d49c662e76ccac1e4d52c217cc" + password: !secret clock01_ota + wifi: ssid: !secret wifi_ssid @@ -27,7 +28,7 @@ wifi: # Enable fallback hotspot (captive portal) in case wifi connection fails ap: ssid: "Unhb-Uhr Fallback Hotspot" - password: "VRduM2tepC49" + password: !secret wifi_fallback_passwd captive_portal: @@ -139,4 +140,4 @@ light: it[i] = Color((sek*4)+10, 0, 0); it[(i+it.size()-1)%it.size()] = Color((60-sek)*4+10, 0, 0); } - else { it[i] = Color(255, 0, 0); } \ No newline at end of file + else { it[i] = Color(255, 0, 0); }