mirror of
https://github.com/home-assistant/core.git
synced 2026-02-15 07:36:16 +00:00
Co-authored-by: Josef Zweck <josef@zweck.dev> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
16 lines
409 B
Python
16 lines
409 B
Python
"""Consts for IDrive e2 tests."""
|
|
|
|
from homeassistant.components.idrive_e2.const import (
|
|
CONF_ACCESS_KEY_ID,
|
|
CONF_BUCKET,
|
|
CONF_ENDPOINT_URL,
|
|
CONF_SECRET_ACCESS_KEY,
|
|
)
|
|
|
|
USER_INPUT = {
|
|
CONF_ACCESS_KEY_ID: "TestTestTestTestTest",
|
|
CONF_SECRET_ACCESS_KEY: "TestTestTestTestTestTestTestTestTestTest",
|
|
CONF_ENDPOINT_URL: "https://c7h8.fra201.idrivee2-98.com",
|
|
CONF_BUCKET: "test",
|
|
}
|