2023-03-19 15:09:37 +00:00
|
|
|
namespace InnovEnergy.App.Backend.S3;
|
|
|
|
|
|
|
|
public static class S3Access
|
|
|
|
{
|
2023-03-19 16:02:18 +00:00
|
|
|
// TODO: put these into Json files in /Resources and read them from
|
|
|
|
// there so they can be changed without recompiling
|
|
|
|
// they should be read from disk on each use,
|
|
|
|
// so the backend does not need to be restarted on change
|
|
|
|
|
2023-03-19 15:09:37 +00:00
|
|
|
public static S3Cmd ReadOnly { get; } = new S3Cmd
|
|
|
|
(
|
|
|
|
key : "EXO44d2979c8e570eae81ead564",
|
|
|
|
secret: "55MAqyO_FqUmh7O64VIO0egq50ERn_WIAWuc2QC44QU"
|
|
|
|
);
|
|
|
|
|
|
|
|
public static S3Cmd ReadWrite { get; } = new S3Cmd
|
|
|
|
(
|
|
|
|
key : "EXO87ca85e29dd412f1238f1cf0",
|
|
|
|
secret: "-T9TAqy9a3-0-xj7HKsFFJOCcxfRpcnL6OW5oOrOcWU"
|
|
|
|
);
|
|
|
|
}
|