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 2da083531751bc8105bd2e7ee12363748a20c0a9 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Sep 10 14:30:52 2024 +0200 CAMEL-21179 - Secret Properties Functions: Supporting secret name containing "/" - Google Secret Manager Signed-off-by: Andrea Cosentino <[email protected]> --- .../src/main/docs/google-secret-manager-component.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-google/camel-google-secret-manager/src/main/docs/google-secret-manager-component.adoc b/components/camel-google/camel-google-secret-manager/src/main/docs/google-secret-manager-component.adoc index 57c52e8b58a..a1c01bed3f3 100644 --- a/components/camel-google/camel-google-secret-manager/src/main/docs/google-secret-manager-component.adoc +++ b/components/camel-google/camel-google-secret-manager/src/main/docs/google-secret-manager-component.adoc @@ -175,7 +175,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> ---- @@ -189,7 +189,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> ---- @@ -227,7 +227,7 @@ This approach will return the route secret value with version '1' or default val <camelContext> <route> <from uri="direct:start"/> - <log message="Username is {{gcp:database/username:admin@1}}"/> + <log message="Username is {{gcp:database#username:admin@1}}"/> </route> </camelContext> ----
