Files
core/tests/components/cloudflare_r2/const.py
Tomás Correia 9f3b13dfa1 Add Cloudflare R2 integration (#152825)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Josef Zweck <josef@zweck.dev>
2026-01-28 14:34:58 +01:00

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",
}