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 31961228f4 obfuscate aws key id and secret. fixes #7068 (#7069)
31961228f4 is described below

commit 31961228f41ca513bac20697ceaa0dfc6e9eda76
Author: Bart Maertens <[email protected]>
AuthorDate: Mon May 4 07:39:32 2026 +0000

    obfuscate aws key id and secret. fixes #7068 (#7069)
---
 .../org/apache/hop/pipeline/transforms/aws/sns/SnsNotifyMeta.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sns/SnsNotifyMeta.java
 
b/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sns/SnsNotifyMeta.java
index 0e8a7a7f3a..e1c0ed7557 100644
--- 
a/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sns/SnsNotifyMeta.java
+++ 
b/plugins/tech/aws/src/main/java/org/apache/hop/pipeline/transforms/aws/sns/SnsNotifyMeta.java
@@ -54,10 +54,10 @@ public class SnsNotifyMeta extends 
BaseTransformMeta<SnsNotify, SnsNotifyData> {
   @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