This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-21179-gcp in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1da9427ea0cdb4911d65d4c3293b9c7e03ccb8df Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Sep 10 14:36:54 2024 +0200 CAMEL-21179 - Secret Properties Functions: Supporting secret name containing "/" - Google Secret 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 0ff8257172b..78eb02492b8 100644 --- a/docs/user-manual/modules/ROOT/pages/security.adoc +++ b/docs/user-manual/modules/ROOT/pages/security.adoc @@ -281,7 +281,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 {{gcp:database/username}}"/> + <log message="Username is {{gcp:database#username}}"/> </route> </camelContext> ---- @@ -295,7 +295,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 {{gcp:database/username:admin}}"/> + <log message="Username is {{gcp:database#username:admin}}"/> </route> </camelContext> ----