This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-21179-aws in repository https://gitbox.apache.org/repos/asf/camel.git
commit bf1c460695c8143e14dc697c36e79044c134fae2 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Sep 10 10:22:02 2024 +0200 CAMEL-21179 - Secret Properties Functions: Supporting secret name containing "/" - AWS Secrets Manager Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- docs/user-manual/modules/ROOT/pages/security.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/security.adoc b/docs/user-manual/modules/ROOT/pages/security.adoc index 9b9c589e37a..0ff8257172b 100644 --- a/docs/user-manual/modules/ROOT/pages/security.adoc +++ b/docs/user-manual/modules/ROOT/pages/security.adoc @@ -172,7 +172,7 @@ You're able to do get single secret value in your route, like for example: <camelContext> <route> <from uri="direct:start"/> - <log message="Username is {{aws:database/username}}"/> + <log message="Username is {{aws:database#username}}"/> </route> </camelContext> ---- @@ -186,7 +186,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 {{aws:database/username:admin}}"/> + <log message="Username is {{aws:database#username:admin}}"/> </route> </camelContext> ----