I am using NGINX reverse proxy, I configured all the intents at the Amazon dev console and in the HA configuration file, but when I ask Alexa I get the following message: “This intent is not yet configured within Home Assistant”
I split my configuration files, so I have an “alexa.yaml” file and my mistake was that I used “alexa:” which was actually suppose to be in the “configuration.yaml” file
example:
configuration.yaml:
alexa: !include alexa.yaml
alexa.yaml:
intents:
WhereAreWeIntent:
speech:
type: plaintext
text: >
{%- if is_state('group.g_shai_tracker', 'home') and
is_state('group.g_alina_tracker', 'home') -%}
You are both home, you silly
{%- else -%}
Alina is at {{ states("group.g_alina_tracker").replace('_', ' ')}}
and Shai is at {{ states("group.g_shai_tracker").replace('_', ' ')}}
{% endif %}