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
The following commit(s) were added to refs/heads/main by this push:
new 979a1a4 CAMEL-17644 - Support ability to load properties from
Vault/Secrets cloud services - AWS Secrets Manager - Docs
979a1a4 is described below
commit 979a1a4d79eeb889210138273194165f90b5a81f
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Feb 14 15:25:25 2022 +0100
CAMEL-17644 - Support ability to load properties from Vault/Secrets cloud
services - AWS Secrets Manager - Docs
---
.../modules/ROOT/pages/using-propertyplaceholder.adoc | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/docs/user-manual/modules/ROOT/pages/using-propertyplaceholder.adoc
b/docs/user-manual/modules/ROOT/pages/using-propertyplaceholder.adoc
index 3f79a92..050051f 100644
--- a/docs/user-manual/modules/ROOT/pages/using-propertyplaceholder.adoc
+++ b/docs/user-manual/modules/ROOT/pages/using-propertyplaceholder.adoc
@@ -496,6 +496,20 @@ Where route will be the name of the secret stored in the
AWS Secrets Manager Ser
For the moment we are not considering the rotation function, if any will be
applied, but it is in the work to be done.
+Another important point it is the following: you'll need to explicitly add the
secretsManager dependency in your POM while using this feature.
+
+[source,xml]
+----
+<dependency>
+ <groupId>software.amazon.awssdk</groupId>
+ <artifactId>secretsmanager</artifactId>
+ <version>${aws-java-sdk2-version}</version>
+ <scope>test</scope>
+</dependency>
+----
+
+Where the 'aws-java-sdk2-version' is the version used in the camel-parent of
the Camel release you're using.
+
=== Using custom property placeholder functions
The xref:components::properties-component.adoc[Properties] component allow to
plugin 3rd party functions which can be used during parsing of the property
placeholders.