From ffd13ff7680da96f80112c0d40eff257b64831ef Mon Sep 17 00:00:00 2001 From: Andrea Cosentino Date: Wed, 24 Mar 2021 08:52:20 +0100 Subject: [PATCH] AWS SQS FIFO Sink Kamelet: Added autoCreateQueue option with default false --- aws-sqs-fifo-sink.kamelet.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/aws-sqs-fifo-sink.kamelet.yaml b/aws-sqs-fifo-sink.kamelet.yaml index 0d27b9354..dd2a427e5 100644 --- a/aws-sqs-fifo-sink.kamelet.yaml +++ b/aws-sqs-fifo-sink.kamelet.yaml @@ -44,6 +44,13 @@ spec: description: Use content-based deduplication (should be enabled in the SQS FIFO queue first) type: boolean default: false + autoCreateQueue: + title: Autocreate queue + description: Setting the autocreation of the SQS queue. + type: boolean + x-descriptors: + - 'urn:alm:descriptor:com.tectonic.ui:checkbox' + default: false dependencies: - camel-quarkus:aws2-sqs flow: @@ -77,6 +84,7 @@ spec: - to: uri: "aws2-sqs:{{queueNameOrArn}}" parameters: + autoCreateQueue: "{{autoCreateQueue}}" accessKey: "{{accessKey}}" secretKey: "{{secretKey}}" region: "{{region}}" @@ -87,6 +95,7 @@ spec: - to: uri: "aws2-sqs:{{queueNameOrArn}}" parameters: + autoCreateQueue: "{{autoCreateQueue}}" accessKey: "{{accessKey}}" secretKey: "{{secretKey}}" region: "{{region}}"