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

hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/main by this push:
     new 867f52b6b5 obfuscate SQS key and key secret, fixes #5785 (#5786)
867f52b6b5 is described below

commit 867f52b6b524ba89dacaa4093b33225fbd06b288
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Mon Oct 6 15:04:25 2025 +0200

    obfuscate SQS key and key secret, fixes #5785 (#5786)
---
 .../org/apache/hop/pipeline/transforms/aws/sqs/SqsReaderMeta.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sqs/SqsReaderMeta.java
 
b/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sqs/SqsReaderMeta.java
index e85060f8c9..b94a729087 100644
--- 
a/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sqs/SqsReaderMeta.java
+++ 
b/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sqs/SqsReaderMeta.java
@@ -42,10 +42,10 @@ public class SqsReaderMeta extends 
BaseTransformMeta<SqsReader, SqsReaderData> {
   @HopMetadataProperty(key = "AwsCredChain", injectionKey = "AWS_CRED_CHAIN")
   private String awsCredChain;
 
-  @HopMetadataProperty(key = "aws_key", injectionKey = "AWS_KEY")
+  @HopMetadataProperty(key = "aws_key", injectionKey = "AWS_KEY", password = 
true)
   private String awsKey;
 
-  @HopMetadataProperty(key = "aws_key_secret", injectionKey = "AWS_KEY_SECRET")
+  @HopMetadataProperty(key = "aws_key_secret", injectionKey = 
"AWS_KEY_SECRET", password = true)
   private String awsKeySecret;
 
   @HopMetadataProperty(key = "aws_region", injectionKey = "AWS_REGION")

Reply via email to