You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/29 07:16:04 UTC

[camel-examples] branch master updated: AWS2-Eventbridge Example: More notes to doc

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 5fad572  AWS2-Eventbridge Example: More notes to doc
5fad572 is described below

commit 5fad5724b46fe0cb740467b22eb29805813496ac
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Sep 29 09:15:40 2020 +0200

    AWS2-Eventbridge Example: More notes to doc
---
 examples/camel-example-main-endpointdsl-aws2/readme.adoc | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/examples/camel-example-main-endpointdsl-aws2/readme.adoc b/examples/camel-example-main-endpointdsl-aws2/readme.adoc
index fc3136b..9420333 100644
--- a/examples/camel-example-main-endpointdsl-aws2/readme.adoc
+++ b/examples/camel-example-main-endpointdsl-aws2/readme.adoc
@@ -5,14 +5,18 @@ to define endpoints using type safe fluent builders, which are Java methods
 that are compiled.
 
 This example is splitted in 3 submodules
-- Eventbridge module: This module is responsible for creating a rule in Eventbridge 
+  - Eventbridge module: This module is responsible for creating a rule in Eventbridge 
 and targetting an SQS queue as target
-- SQS Consumer: This module is responsibile for consuming the events coming into the queue
-- S3 Events inject: This module will upload a file to a bucket and as first step it will autocreate a bucket
+  - SQS Consumer: This module is responsibile for consuming the events coming into the queue
+  - S3 Events inject: This module will upload a file to a bucket and as first step it will autocreate a bucket
 
 Notice how you can configure Camel in the `application.properties` file.
 
-Don't forget to add your AWS Credentials on all the sub modules
+Don't forget to add your AWS Credentials on all the sub modules. 
+
+You'll need to create a trail in cloud trails service of AWS to make this example works out of the box.
+
+Also you'll need to create an SQS queue ahead of time, to make the eventbridge rule point it as target.
 
 === How to run