Add ssl parameters to Influx docs

This commit is contained in:
Philip Lundrigan 2016-02-03 17:35:14 -07:00
parent 4953d85f9e
commit 1ee558a8d8

View File

@ -23,6 +23,8 @@ influxdb:
database: DB_TO_STORE_EVENTS database: DB_TO_STORE_EVENTS
username: MY_USERNAME username: MY_USERNAME
password: MY_PASSWORD password: MY_PASSWORD
ssl: true
verify_ssl: true
``` ```
Configuration variables: Configuration variables:
@ -32,4 +34,5 @@ Configuration variables:
- **database** (*Optional*): Name of the database to use. Defaults to `home_assistant`. The database must already exist. - **database** (*Optional*): Name of the database to use. Defaults to `home_assistant`. The database must already exist.
- **username** (*Optional*): The username of the database user. - **username** (*Optional*): The username of the database user.
- **password** (*Optional*): The password for the database user account. - **password** (*Optional*): The password for the database user account.
- **ssl** (*Optional*): Use https instead of http to connect. Defaults to false.
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to false.