Merge pull request #29082 from nextcloud/enh/add-sensitive-config-keys

Add a few sensitive config keys
This commit is contained in:
Vincent Petry 2021-10-06 09:13:12 +02:00 committed by GitHub
commit e5f4d72d0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,6 +83,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 */