mirror of
https://github.com/home-assistant/core.git
synced 2026-02-04 22:35:58 +01:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Josef Zweck <josef@zweck.dev>
16 lines
422 B
Python
16 lines
422 B
Python
"""Consts for Cloudflare R2 tests."""
|
|
|
|
from homeassistant.components.cloudflare_r2.const import (
|
|
CONF_ACCESS_KEY_ID,
|
|
CONF_BUCKET,
|
|
CONF_ENDPOINT_URL,
|
|
CONF_SECRET_ACCESS_KEY,
|
|
)
|
|
|
|
USER_INPUT = {
|
|
CONF_ACCESS_KEY_ID: "R2AccessKeyIdExample",
|
|
CONF_SECRET_ACCESS_KEY: "R2SecretAccessKeyExampleExample",
|
|
CONF_ENDPOINT_URL: "https://1234567890abcdef.r2.cloudflarestorage.com",
|
|
CONF_BUCKET: "test",
|
|
}
|