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
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Platform | Description
12
12
-- | --
13
13
`remote_homeassistant` | Link multiple Home-Assistant instances together .
14
14
15
-
The master instance connects to the Websocket APIs of the slaves, the connection options are specified via the `host`, `port`, and `secure` configuration parameters. An API password can also be set via `api_password`.
15
+
The master instance connects to the Websocket APIs of the slaves, the connection options are specified via the `host`, `port`, and `secure` configuration parameters. An API password can also be set via `api_password`. To ignore SSL warnings in secure mode, set the `verify_ssl` parameter to false.
16
16
17
17
After the connection is completed, the remote states get populated into the master instance.
18
18
The entity ids can optionally be prefixed via the `entity_prefix` parameter.
@@ -61,6 +61,7 @@ remote_homeassistant:
61
61
- host: localhost
62
62
port: 8125
63
63
secure: true
64
+
verify_ssl: false
64
65
access_token: !secret access_token
65
66
api_password: !secret http_password
66
67
entity_prefix: "slave02_"
@@ -82,6 +83,11 @@ secure:
82
83
description: Use TLS (wss://) to connect to the remote instance.
83
84
required: false
84
85
type: bool
86
+
verify_ssl:
87
+
description: Enables / disables verification of the SSL certificate of the remote instance.
88
+
required: false
89
+
type: bool
90
+
default: true
85
91
access_token:
86
92
description: Access token of the remote instance, if set. Mutually exclusive with api_password
0 commit comments