From 62cb344524a0fb7aeaf5f42fd9e258333200b7ad Mon Sep 17 00:00:00 2001 From: misraved Date: Fri, 26 Sep 2025 16:56:18 +0530 Subject: [PATCH] Add support for Azure Blob Storage as an artifact source --- row_source/factory.go | 1 + 1 file changed, 1 insertion(+) diff --git a/row_source/factory.go b/row_source/factory.go index a839eda7..f71942e8 100644 --- a/row_source/factory.go +++ b/row_source/factory.go @@ -117,6 +117,7 @@ func IsArtifactSource(sourceType string) bool { "aws_s3_bucket": {}, "file": {}, "gcp_storage_bucket": {}, + "azure_blob_storage": {}, } _, ok := artifactSources[sourceType] return ok