From 96208d958ed64eebaf5aea2bc69a701ec24c9bcf Mon Sep 17 00:00:00 2001 From: Jacob McSwain Date: Mon, 25 Nov 2019 17:47:56 -0600 Subject: [PATCH] OpenGarage: Add SSL documentation (#11283) * OpenGarage: Add `protocol` documentation This is the documentation companion of https://github.com/home-assistant/home-assistant/pull/29038 * OpenGarage: Replace protocol with ssl Documentation resolution of https://github.com/home-assistant/home-assistant/pull/29038#discussion_r350173095 * OpenGarage: Add documentation for verify_ssl Documentation companion of https://github.com/home-assistant/home-assistant/pull/29038/commits/066bcff6499169612aea6d144693f60a30aa316c --- source/_integrations/opengarage.markdown | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/source/_integrations/opengarage.markdown b/source/_integrations/opengarage.markdown index e981339fef4..866df325e02 100644 --- a/source/_integrations/opengarage.markdown +++ b/source/_integrations/opengarage.markdown @@ -23,7 +23,10 @@ cover: device_key: opendoor name: Left Garage Door garage2: - host: 192.168.1.13 + protocol: https + verify_ssl: false + host: garage.example.com + port: 443 device_key: opendoor name: Right Garage Door ``` @@ -39,6 +42,16 @@ covers: required: true type: map keys: + ssl: + description: Use HTTPS instead of HTTP to connect. + required: false + type: boolean + default: false + verify_ssl: + description: Enable or disable SSL certificate verification. Set to false if you have a self-signed SSL certificate and haven't installed the CA certificate to enable verification. + required: false + default: true + type: boolean host: description: IP address of device. required: true @@ -123,4 +136,5 @@ customize: sensor.garage_car_present: icon: mdi:car ``` + {% endraw %}