mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-12 22:19:00 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
45 lines
1.0 KiB
Markdown
45 lines
1.0 KiB
Markdown
---
|
|
layout: page
|
|
title: UpCloud
|
|
description: Instructions on how to integrate UpCloud within Home Assistant.
|
|
date: 2018-01-28 20:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
ha_category: Hub
|
|
ha_release: 0.65
|
|
logo: upcloud.png
|
|
ha_iot_class: Cloud Polling
|
|
---
|
|
|
|
|
|
The `upcloud` component allows you to access the information about your [UpCloud](https://www.upcloud.com/) servers from Home Assistant.
|
|
|
|
Set up your API user credentials in your [UpCloud control panel](https://my.upcloud.com/).
|
|
|
|
To integrate your UpCloud servers with Home Assistant, add the following section to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
upcloud:
|
|
username: YOUR_API_USERNAME
|
|
password: YOUR_API_PASSWORD
|
|
```
|
|
|
|
{% configuration %}
|
|
username:
|
|
description: Your UpCloud API username.
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: Your UpCloud API user password.
|
|
required: true
|
|
type: string
|
|
scan_interval:
|
|
description: Update interval in seconds.
|
|
required: false
|
|
type: int
|
|
default: 60
|
|
{% endconfiguration %}
|