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 2022/10/03 07:35:37 UTC

[camel-kamelets] 04/04: Azure Storage Blob Kamelets should specify which kind of credentials to use

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

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

commit 313cc77c82dfe7a0f03ae7184ccb564e654fe7f7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 3 09:31:33 2022 +0200

    Azure Storage Blob Kamelets should specify which kind of credentials to use
---
 .../main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml    | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml
index 5d5fc08e..80ed7d31 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml
@@ -63,6 +63,11 @@ spec:
         description: The operation to perform.
         type: string
         default: uploadBlockBlob
+      credentialType:
+        title: Credential Type
+        description: Determines the credential strategy to adopt. Possible values are SHARED_ACCOUNT_KEY, SHARED_KEY_CREDENTIAL and AZURE_IDENTITY
+        type: string
+        default: SHARED_ACCOUNT_KEY
   dependencies:
     - "camel:core"
     - "camel:azure-storage-blob"
@@ -93,3 +98,4 @@ spec:
           parameters:
             accessKey: "{{accessKey}}"
             operation: "{{operation}}"
+            credentialType: "{{credentialType}}"