mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 01:49:16 +00:00
16 lines
403 B
Python
16 lines
403 B
Python
"""Consts for AWS S3 tests."""
|
|
|
|
from homeassistant.components.aws_s3.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://s3.eu-south-1.amazonaws.com",
|
|
CONF_BUCKET: "test",
|
|
}
|