mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:17:32 +00:00
feat: asset storage (#1696)
* feat: remove assets * feat: minio implementation * fix: remove assets from tests * feat: minio implementation * feat: Env vars * fix: sprintf * fix: sprintf * Update internal/eventstore/repository/repository.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: error handling Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
14
internal/static/s3/config.go
Normal file
14
internal/static/s3/config.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package s3
|
||||
|
||||
type AssetStorage struct {
|
||||
Type string
|
||||
Config S3Config
|
||||
}
|
||||
|
||||
type S3Config struct {
|
||||
Endpoint string
|
||||
AccessKeyID string
|
||||
SecretAccessKey string
|
||||
SSL bool
|
||||
Location string
|
||||
}
|
Reference in New Issue
Block a user