This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-21640 in repository https://gitbox.apache.org/repos/asf/camel.git
commit e847c22fc915696ca076aa483d7ddaa4ecd314a4 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Jan 21 14:33:15 2025 +0100 CAMEL-21640 - Camel-Hashicorp-Vault: Support Hashicorp Cloud deployment in properties function - Docs Signed-off-by: Andrea Cosentino <[email protected]> --- docs/user-manual/modules/ROOT/pages/security.adoc | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/user-manual/modules/ROOT/pages/security.adoc b/docs/user-manual/modules/ROOT/pages/security.adoc index febc4f96bce..261bd6627c7 100644 --- a/docs/user-manual/modules/ROOT/pages/security.adoc +++ b/docs/user-manual/modules/ROOT/pages/security.adoc @@ -449,6 +449,30 @@ camel.vault.hashicorp.port = port camel.vault.hashicorp.scheme = scheme ---- +In case the running Hashicorp Vault instance you're pointing is running on Hashicorp Cloud, the configuration will require two additional parameters: + +[source,bash] +---- +export CAMEL_VAULT_HASHICORP_TOKEN=token +export CAMEL_VAULT_HASHICORP_HOST=host +export CAMEL_VAULT_HASHICORP_PORT=port +export CAMEL_VAULT_HASHICORP_SCHEME=http/https +export CAMEL_HASHICORP_VAULT_CLOUD=true +export CAMEL_HASHICORP_VAULT_NAMESPACE=namespace +---- + +You can also set the same in the `application.properties` file such as: + +[source,properties] +---- +camel.vault.hashicorp.token = token +camel.vault.hashicorp.host = host +camel.vault.hashicorp.port = port +camel.vault.hashicorp.scheme = scheme +camel.vault.hashicorp.cloud = true +camel.vault.hashicorp.namespace = namespace +---- + At this point, you'll be able to reference a property in the following way: [source,xml]
