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 e5463a55b59d4d728effa1d73305b0faaf42f162 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Sat Feb 19 14:11:06 2022 +0100 CAMEL-17644 - Support ability to load properties from Vault/Secrets cloud services - aws secrets manager --- .../aws/secretsmanager/SecretsManagerPropertiesFunction.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java index dda616c..2144be8 100644 --- a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java +++ b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerPropertiesFunction.java @@ -49,6 +49,16 @@ import software.amazon.awssdk.services.secretsmanager.model.GetSecretValueRespon * <li><tt>CAMEL_VAULT_AWS_REGION</tt></li> * </ul> * <p/> + * + * Otherwise it is possible to specify the credentials as properties: + * + * <ul> + * <li><tt>camel.vault.aws.accessKey</tt></li> + * <li><tt>camel.vault.aws.secretKey</tt></li> + * <li><tt>camel.vault.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