In the minio example we see that credentials are t...
# help
l
In the minio example we see that credentials are to be specified in the `config.yaml`:
Copy code
blockstore:
  type: s3
  s3:
    region: us-east-1
    force_path_style: true
    endpoint: <http://localhost:9000>
    credentials:
      access_key_id: minioadmin
      secret_access_key: minioadmin
is there some way around this?
i
Yes, there is. You can supply it using env vars. E.g. the access_key can be provided with the env var
LAKEFS_BLOCKSTORE_CREDENTIALS_ACCESS_KEY_ID=<your_access_key>
l
thanks!
👍 1
then I guess the next one is
LAKEFS_BLOCKSTORE_CREDENTIALS_SECRET_ACCESS_KEY_ID
i
LAKEFS_BLOCKSTORE_CREDENTIALS_SECRET_ACCESS_KEY
, without the
_ID
suffix.
👍🏾 1
l
yeah sorry. thanks!
👍 1