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-examples.git
commit 4c341961bba70654c05b903a4d6d2467b514eedf Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Sat Feb 19 14:58:39 2022 +0100 Added an example of Kamelet Main using Postgresql Source Kamelet and secrets manager --- examples/kamelet-sql/README.adoc | 2 +- examples/kamelet-sql/src/main/resources/application.properties | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/kamelet-sql/README.adoc b/examples/kamelet-sql/README.adoc index 6a45dda..11bde81 100644 --- a/examples/kamelet-sql/README.adoc +++ b/examples/kamelet-sql/README.adoc @@ -64,7 +64,7 @@ Save the secret by naming it postgresql. === Set up credentials for AWS Secrets Manager -In src/main/resources/application.properties, populate the camel.aws.vault.* properties correctly. +In src/main/resources/application.properties, populate the camel.vault.aws.* properties correctly. Now you are ready to run this example. diff --git a/examples/kamelet-sql/src/main/resources/application.properties b/examples/kamelet-sql/src/main/resources/application.properties index 7e5c8f3..c086934 100644 --- a/examples/kamelet-sql/src/main/resources/application.properties +++ b/examples/kamelet-sql/src/main/resources/application.properties @@ -18,6 +18,6 @@ # to configure camel main camel.main.name = postgresql-source-kamelet -camel.aws.vault.access.key=<accessKey> -camel.aws.vault.secret.key=<secretKey> -camel.aws.vault.region=<region> +camel.vault.aws.accessKey=<accessKey> +camel.vault.aws.secretKey=<secretKey> +camel.vault.aws.region=<region>