Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minio storage support #293

Open
wahello opened this issue Dec 14, 2019 · 1 comment
Open

minio storage support #293

wahello opened this issue Dec 14, 2019 · 1 comment

Comments

@wahello
Copy link

wahello commented Dec 14, 2019

Please add support minio storage support

@jbosse
Copy link

jbosse commented Oct 28, 2021

Minio mimics the AWS api so if you set your config with the correct values it should work.

config :arc,
  storage: Arc.Storage.S3,
  bucket: {:system, "S3_BUCKET"}

config :ex_aws,
  access_key_id: {:system, "AWS_ACCESS_KEY_ID"},
  secret_access_key: {:system, "AWS_SECRET_ACCESS_KEY"},
  region: {:system, "S3_REGION"} || "us-east-1"

config :ex_aws, :s3,
  scheme: {:system, "S3_SCHEME"} || "https://",
  host: {:system, "S3_HOST"} || "s3.amazonaws.com",
  region: {:system, "S3_REGION"} || "us-east-1",
  port: {:system, "S3_PORT"} || 443

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants