Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
consider some config keys under 'objectstore_multibucket' as sensitive
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
  • Loading branch information
Julien Veyssier authored and backportbot[bot] committed Oct 6, 2021
commit 0690c601c9c077013b0c63f1114aa678d2dc4a07
21 changes: 21 additions & 0 deletions lib/private/SystemConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,27 @@ class SystemConfig {
],
],
],
'objectstore_multibucket' => [
'arguments' => [
'options' => [
'credentials' => [
'key' => true,
'secret' => true,
]
],
// S3
'key' => true,
'secret' => true,
// Swift v2
'username' => true,
'password' => true,
// Swift v3
'user' => [
'name' => true,
'password' => true,
],
],
],
];

/** @var Config */
Expand Down