mirror of
https://github.com/minio/minio.git
synced 2024-12-25 14:45:54 -05:00
f91c072f61
This commit updates the KMS getting started guide and replaces the legacy MinIO<-->Vault setup with a MinIO<-->KES<-->Vault setup. Therefore, add some architecture ASCII diagrams and provide a step-by-step guide to setup Vault, KES and MinIO such that MinIO can encrypt objects with KES + Vault. The legacy Vault guide has been moved to `./vault-legacy.md`. Co-authored-by: Harshavardhana <harsha@minio.io>
19 lines
353 B
JSON
19 lines
353 B
JSON
{
|
|
"api_addr": "https://127.0.0.1:8200",
|
|
"backend": {
|
|
"file": {
|
|
"path": "vault/file"
|
|
}
|
|
},
|
|
"default_lease_ttl": "168h",
|
|
"max_lease_ttl": "720h",
|
|
"listener": {
|
|
"tcp": {
|
|
"address": "0.0.0.0:8200",
|
|
"tls_cert_file": "vault-tls.crt",
|
|
"tls_key_file": "vault-tls.key",
|
|
"tls_min_version": "tls12"
|
|
}
|
|
}
|
|
}
|