Hi.
Updated to latest release today (0.110.0) from the one before and run into a problem. Safe mode activated
2020-05-20 16:12:25 ERROR (MainThread) [homeassistant.bootstrap] Failed to parse configuration.yaml: Secret netatmo_id not defined. Activating safe mode
2020-05-20 16:12:32 WARNING (MainThread) [aiohttp.websocket] websocket connection is closing.
And this is my simple configurations and secrets files
configuration.yaml
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# http:
# base_url: example.duckdns.org:8123
# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
influxdb:
username: !secret influxdb_user
password: !secret influxdb_password
max_retries: 3
default_measurement: state
component_config:
counter.hotw:
override_measurement: lt
component_config_glob:
sensor.*humidity:
override_measurement: humidity
sensor.*temperature:
override_measurement: temperature
netatmo:
client_id: !secret netatmo_id
client_secret: !secret netatmo_secret
secrets.yaml
# Use this file to store secrets like usernames and passwords.
# Learn more at https://www.home-assistant.io/docs/configuration/secrets/
# Influx Database
influxdb_user: ***********
influxdb_password: ***********
# Netatmo Weather
natatmo_id: ***********
netatmo_secret: ***********
Everything worked perfectly before i updated. Please help!
Thanks!