You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2021/08/18 19:14:48 UTC

[lucene-solr] branch branch_8x updated: SOLR-15089: Protect sensitive S3 system properties.

This is an automated email from the ASF dual-hosted git repository.

houston pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new a9d4c4a  SOLR-15089: Protect sensitive S3 system properties.
a9d4c4a is described below

commit a9d4c4a06a22f7ebf97a0068fa758fd89a23e379
Author: Houston Putman <ho...@apache.org>
AuthorDate: Wed Aug 18 14:34:53 2021 -0400

    SOLR-15089: Protect sensitive S3 system properties.
---
 solr/core/src/java/org/apache/solr/core/NodeConfig.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/core/NodeConfig.java b/solr/core/src/java/org/apache/solr/core/NodeConfig.java
index 3b8e40e..fd9f8db 100644
--- a/solr/core/src/java/org/apache/solr/core/NodeConfig.java
+++ b/solr/core/src/java/org/apache/solr/core/NodeConfig.java
@@ -339,7 +339,9 @@ public class NodeConfig {
         "javax.net.ssl.trustStorePassword",
         "basicauth",
         "zkDigestPassword",
-        "zkDigestReadonlyPassword"
+        "zkDigestReadonlyPassword",
+        "aws.secretKey", // AWS SDK v1
+        "aws.secretAccessKey" // AWS SDK v2
     ));
 
     public NodeConfigBuilder(String nodeName, Path solrHome) {