[SOLVED] Alexa Config - Home Assistant Cloud

Good evening… I am trying to get the cloud configuration rolling with the Home Assistant Cloud and everything works great until I introduce the alexa: part of the config for filters, etc… Alexa will turn on and off this switch, but after the config below to rename it, HA starts back up and throws an error card: Invalid Config: The following components and platforms could not be set up. “cloud” At this point re-discovering devices fails in alexa. If I remove everything below cloud: then it can re-discover them. What am I doing wrong here? - Thank you in Advance!

I’m running 0.82.1

cloud:
  alexa:
    filter:
      include_entities:
      - switch.front_porch_ligh_switch
    include_domains:
      - switch
    entity_config:
      switch.front_porch_ligh_switch:
        name: Front Porch Light
        description: Front Porch Light

The space is work. Did you check config ? Also when you already mention

  1. include_domains: switch That mean all switches will be discover by alexa cloud.
  2. You should exclude_entities in the switch domain that you don’t want to be discover by alexa.
cloud:
  alexa:
    filter:
      include_entities:
        - switch.front_porch_ligh_switch
      include_domains:
        - switch
      entity_config:
        switch.front_porch_ligh_switch:
          name: Front Porch Light
          description: Front Porch Light

@Sunonline you are a genius my friend. I just simplified it to just include what I need for now and it worked!

Updated config:

cloud:
  alexa:
    filter:
      include_entities:
      - switch.front_porch_ligh_switch
    entity_config:
      switch.front_porch_ligh_switch:
        name: Front Porch Light
        description: Front Porch Light

THANK YOU!