You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/21 08:46:42 UTC

[camel] branch camel-3.x updated: Make AWS test credentials FIPS compliant

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

acosentino pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
     new 9304f06511b Make AWS test credentials FIPS compliant
9304f06511b is described below

commit 9304f06511b2da4c6a01655d097b867add236659
Author: Marco Carletti <mc...@redhat.com>
AuthorDate: Tue Feb 21 09:17:36 2023 +0100

    Make AWS test credentials FIPS compliant
---
 .../apache/camel/test/infra/aws2/common/TestAWSCredentialsProvider.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/common/TestAWSCredentialsProvider.java b/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/common/TestAWSCredentialsProvider.java
index 7f5b5116f52..2170e16a243 100644
--- a/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/common/TestAWSCredentialsProvider.java
+++ b/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/common/TestAWSCredentialsProvider.java
@@ -21,7 +21,7 @@ import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider;
 
 public class TestAWSCredentialsProvider implements AwsCredentialsProvider {
     public static final TestAWSCredentialsProvider CONTAINER_LOCAL_DEFAULT_PROVIDER
-            = new TestAWSCredentialsProvider("accesskey", "secretkey");
+            = new TestAWSCredentialsProvider("accesskey", "randomatleast16bytes");
 
     private AwsCredentials credentials;