uppy/packages/@uppy/aws-s3/tests/s3-client/config.ts
Prakash 2d429a8aef
@uppy/aws-s3: remote uploads and golden retriever (#6186)
- add support for remote uploads
- add support for restore using golden-retriever
- update examples
- #6181 still persists

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Mikael Finstad <finstaden@gmail.com>
2026-06-17 13:54:48 +05:30

14 lines
534 B
TypeScript

export const accessKeyId = 'stsuser'
export const secretAccessKey = 'stspassword123'
export function getConfig(env: Record<string, string | undefined>) {
const config = env['VITE_MINIO_CONFIG']
if (!config) {
return undefined
}
const [rootAccessKeyId, rootSecretAccessKey, endpoint, region] =
config.split(',')
// Use stsuser credentials for all tests (readwrite policy is sufficient)
// Root credentials are kept for Docker container startup
return { endpoint, region, rootAccessKeyId, rootSecretAccessKey }
}