This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit b1db29ca28e1e9c1d0e9838c75a63eaedf2b6874 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Feb 14 15:06:16 2022 +0100 CAMEL-17644 - Support ability to load properties from Vault/Secrets cloud services - AWS Secrets Manager --- .../properties/AWSSecretsManagerPropertiesFunction.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/camel-base/src/main/java/org/apache/camel/component/properties/AWSSecretsManagerPropertiesFunction.java b/core/camel-base/src/main/java/org/apache/camel/component/properties/AWSSecretsManagerPropertiesFunction.java index 636d72c..91c4a14 100644 --- a/core/camel-base/src/main/java/org/apache/camel/component/properties/AWSSecretsManagerPropertiesFunction.java +++ b/core/camel-base/src/main/java/org/apache/camel/component/properties/AWSSecretsManagerPropertiesFunction.java @@ -31,16 +31,17 @@ import software.amazon.awssdk.services.secretsmanager.model.GetSecretValueRespon /** * A {@link PropertiesFunction} that lookup the property value from AWS Secrets Manager service. * <p/> - * The credentials to access Secrets Manager is defined using three environment variables representing the static credentials: + * The credentials to access Secrets Manager is defined using three environment variables representing the static + * credentials: * <ul> * <li><tt>AWS_ACCESS_KEY</tt></li> * <li><tt>AWS_SECRET_KEY</tt></li> * <li><tt>AWS_REGION</tt></li> * </ul> * <p/> - * This implementation is to return the secret value associated with a key. - * The properties related to this kind of Properties Function are all prefixed with <tt>aws:</tt>. - * For example asking for <tt>aws:token</tt>, will return the secret value associated the secret named token on AWS Secrets Manager + * This implementation is to return the secret value associated with a key. The properties related to this kind of + * Properties Function are all prefixed with <tt>aws:</tt>. For example asking for <tt>aws:token</tt>, will return the + * secret value associated the secret named token on AWS Secrets Manager */ public class AWSSecretsManagerPropertiesFunction implements PropertiesFunction {
