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 0060d7147de2411688242ca297285a946e301840 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Sep 9 14:50:15 2024 +0200 CAMEL-21179 - Secret Properties Functions: Supporting secret name containing "/" - Hashicorp Vault Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- docs/user-manual/modules/ROOT/pages/security.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/security.adoc b/docs/user-manual/modules/ROOT/pages/security.adoc index 1f4a2f7c504..9b9c589e37a 100644 --- a/docs/user-manual/modules/ROOT/pages/security.adoc +++ b/docs/user-manual/modules/ROOT/pages/security.adoc @@ -491,7 +491,7 @@ You're able to do get single secret value in your route, in the 'secret' engine, <camelContext> <route> <from uri="direct:start"/> - <log message="Username is {{hashicorp:secret:database/username}}"/> + <log message="Username is {{hashicorp:secret:database#username}}"/> </route> </camelContext> ---- @@ -505,7 +505,7 @@ You could specify a default value in case the particular field of secret is not <camelContext> <route> <from uri="direct:start"/> - <log message="Username is {{hashicorp:secret:database/username:admin}}"/> + <log message="Username is {{hashicorp:secret:database#username:admin}}"/> </route> </camelContext> ---- @@ -543,7 +543,7 @@ This approach will return the route secret value with version '2' or default val <camelContext> <route> <from uri="direct:start"/> - <log message="Username is {{hashicorp:secret:database/username:admin@2}}"/> + <log message="Username is {{hashicorp:secret:database#username:admin@2}}"/> </route> </camelContext> ----