You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Enable the Home Assistant Cloud integration."
5
+
date: 2017-11-17 20:00
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: home-assistant.png
11
+
ha_release: 0.57
12
+
---
13
+
14
+
The Home Assistant Cloud allows you to quickly integrate your local instance with various cloud services. Any processing of services from other cloud services is handled by your local instance.
15
+
16
+
To get started, create an account and log in via the configuration panel in your Home Assistant instance. There is no need to configure your router or expose your instance to the internet in any other way.
17
+
18
+
### {% linkable_title Amazon Alexa %}
19
+
20
+
The Alexa integration allows users to control the entities via the [Home Assistant Smart Home skill for Alexa][alexa skill]. This means that you can say things like "Alexa, turn on the kitchen light" to control your local instance.
21
+
22
+
```yaml
23
+
# Example configuration.yaml entry configuring Alexa
24
+
cloud:
25
+
alexa:
26
+
filter:
27
+
include_entities:
28
+
- light.kitchen
29
+
include_domains:
30
+
- switch
31
+
exclude_entities:
32
+
- light.living_room
33
+
exclude_domains:
34
+
- script
35
+
```
36
+
37
+
{% configuration %}
38
+
alexa:
39
+
description: Configuration options for the Amazon Alexa integration.
40
+
required: false
41
+
type: map
42
+
keys:
43
+
filter:
44
+
description: Filters for entities to include/exclude from Alexa.
0 commit comments