From 9fd6a413a4660828c27fcfbdeaaaf3c7a07f65be Mon Sep 17 00:00:00 2001 From: Jagadisha V <129049263+JV0812@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:20:01 +0530 Subject: [PATCH 1/8] cloudquery-source doc added --- .../cloudquery-source.md | 98 ++++++++++++++++++ .../index.md | 6 ++ sidebars.ts | 1 + static/files/c2c/cloudquery/example.json | 23 ++++ static/files/c2c/cloudquery/example.tf | 24 +++++ static/img/send-data/cloudquery-logo.png | Bin 0 -> 12656 bytes 6 files changed, 152 insertions(+) create mode 100644 docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md create mode 100644 static/files/c2c/cloudquery/example.json create mode 100644 static/files/c2c/cloudquery/example.tf create mode 100644 static/img/send-data/cloudquery-logo.png diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md new file mode 100644 index 0000000000..13d43e406c --- /dev/null +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md @@ -0,0 +1,98 @@ +--- +id: cloudquery-source +title: CloudQuery Source +sidebar_label: CloudQuery +tags: + - cloud-to-cloud + - cloudquery +description: Learn how to collect inventory from the AWS APIs and transform them into the CloudQuery schema and send it to Sumo Logic. +--- + +import CodeBlock from '@theme/CodeBlock'; +import ExampleJSON from '/files/c2c/cloudquery/example.json'; +import MyComponentSource from '!!raw-loader!/files/c2c/cloudquery/example.json'; +import TerraformExample from '!!raw-loader!/files/c2c/cloudquery/example.tf'; +import useBaseUrl from '@docusaurus/useBaseUrl'; + +cloudquery-icon + +The CloudQuery integration is used to pull inventory from the AWS APIs and transform them into the CloudQuery schema and send it to Sumo Logic. + +:::note +This source is available in the [Fed deployment](https://hub.cloudquery.io/plugins/source/cloudquery/aws/v22.19.2/docs). +::: + +## Data collected + +| Polling Interval | Data | +| :--- | :--- | +| 24 hours | [Data service table data](https://developer.code42.com/api) | + +## Setup + +### Source configuration + +When you create an CloudQuery source, you add it to a Hosted Collector. Before creating the source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see [Configure a Hosted Collector](/docs/send-data/hosted-collectors/configure-hosted-collector). + +To configure a CloudQueryr Source: +1. In Sumo Logic, select **Manage Data** > **Collection** > **Collection**.  +1. On the Collection page, click **Add Source** next to a Hosted Collector. +1. Search for and select **CloudQuery**. +1. Enter a **Name** for the source. The description is optional. +1. (Optional) For **Source Category**, enter any string to tag the output collected from the Source. Category metadata is stored in a searchable field called `_sourceCategory`. +1. (Optional) **Fields**. Click the **+Add** button to define the fields you want to associate. Each field needs a name (key) and value. + * ![green check circle.png](/img/reuse/green-check-circle.png) A green circle with a check mark is shown when the field exists in the Fields table schema. + * ![orange exclamation point.png](/img/reuse/orange-exclamation-point.png) An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema it is ignored, known as dropped. +1. **AWS Access Key ID**. Enter the Access Key ID collected from the [AWS Management Console](#vendor-configuration). +1. **AWS Secret Access Key**. Enter the Secret Access Key collected from the [AWS Management Console](#vendor-configuration). +1. **Regions**. Identify and enter your Region based on your Base URL. +1. **Sevices**. Enter the type of service from which the data needs to be collected. +1. By default, **Polling Interval** is set to 24 hours. +1. When you are finished configuring the Source, click **Save**. + +## JSON schema + +Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See [JSON to configure Sources](/docs/send-data/use-json-configure-sources) for details.  + +| Parameter | Type | Value | Required | Description | +|:--|:--|:--|:--|:--| +| schemaRef | JSON Object | `{"type":"CloudQuery"}` | Yes | Define the specific schema type. | +| sourceType | String | `"Universal"` | Yes | Type of source. | +| config | JSON Object | [Configuration object](#configuration-object) | Yes | Source type specific values. | + +### Configuration Object + +| Parameter | Type | Required | Default | Description | Example | +|:--|:--|:--|:--|:--|:--| +| name | String | Yes | `null` | Type a desired name of the source. The name must be unique per Collector. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_source`. | `"mySource"` | +| description | String | No | `null` | Type a description of the source. | `"Testing source"` +| category | String | No | `null` | Type a category of the source. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_sourceCategory`. See [best practices](/docs/send-data/best-practices) for details. | `"mySource/test"` +| fields | JSON Object | No | `null` | JSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field `_siemForward` to enable forwarding to SIEM.|`{"_siemForward": false, "fieldA": "valueA"}` | +| awsId | String | Yes | `null` | The AWS access ID that you want to use to authenticate collection requests. | | +| awsKey | String | Yes | `null` | The AWS secret key that you want to use to authenticate collection requests. | | +| limitToRegions | Array | Yes | | List of regions for which the data has to be fetched. | | +| limitToServices | Array | Yes | | List of services for which the data has to be fetched. | | +| pollingInterval | Integer | No | 24 | This sets how often the Source checks for data. | | + +### JSON example + +{MyComponentSource} + +[Download example](/files/c2c/cloudquery/example.json) + +### Terraform example + +{TerraformExample} + +[Download example](/files/c2c/cloudquery/example.tf) + +## Limitations + +- The integration lacks support for fetching service table data from multiple AWS accounts. +- The integration does not support to retrieve data from services like Classic load balancer, Network load balancer, Aurora, and VPC. + +## FAQ + +:::info +Click [here](/docs/c2c/info) for more information about Cloud-to-Cloud sources. +::: \ No newline at end of file diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md index d4c9a4230a..e19ff3ded4 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md @@ -156,6 +156,12 @@ In this section, we'll introduce the following concepts:

Provides a secure endpoint to receive System Log data from the Citrix Cloud System Log API.

+
+
+ icon

CloudQuery Source

+

Learn how to collect inventory from the AWS APIs.

+
+
icon

Cloud-to-Cloud Versions

diff --git a/sidebars.ts b/sidebars.ts index de4392223a..0ff72a874e 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -266,6 +266,7 @@ module.exports = { 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cisco-vulnerability-management-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/citrix-cloud-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloud-to-cloud-source-versions', + 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/code42-incydr-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-fdr-host-inventory-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-fdr-source', diff --git a/static/files/c2c/cloudquery/example.json b/static/files/c2c/cloudquery/example.json new file mode 100644 index 0000000000..44ac299258 --- /dev/null +++ b/static/files/c2c/cloudquery/example.json @@ -0,0 +1,23 @@ +{ + "api.version": "v1", + "source": { + "config": { + "name": "CloudQuery AWS Inventory", + "accessKeyId": "************", + "secretAccessKey": "***************************", + "limitToRegions": [ + "us-east-1", + "us-east-2" + ], + "awsServices": [ + "ECS", + "EC2" + ], + "pollInterval": 24 + }, + "schemaRef": { + "type": "CloudQuery AWS Inventory" + }, + "sourceType": "Universal" + } +} \ No newline at end of file diff --git a/static/files/c2c/cloudquery/example.tf b/static/files/c2c/cloudquery/example.tf new file mode 100644 index 0000000000..24d13ccc7f --- /dev/null +++ b/static/files/c2c/cloudquery/example.tf @@ -0,0 +1,24 @@ +resource "sumologic_cloud_to_cloud_source" "cloudquery_source" { + collector_id = sumologic_collector.collector.id + schema_ref = { + type = "CloudQuery" + } + config = jsonencode({ + "name": "CloudQuery AWS Inventory", + "accessKeyId": "************", + "secretAccessKey": "***************************", + "limitToRegions": [ + "us-east-1", + "us-east-2" + ], + "awsServices": [ + "ECS", + "EC2" + ], + "pollInterval": 24 + }) +} +resource "sumologic_collector" "collector" { + name = "my-collector" + description = "Just testing this" +} \ No newline at end of file diff --git a/static/img/send-data/cloudquery-logo.png b/static/img/send-data/cloudquery-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f9b1228aa4eb5b58788337090d10047459f98328 GIT binary patch literal 12656 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 C3LkC& literal 0 HcmV?d00001 From e4fd29aabb7b85187d5cb22ac4dd8fc6d850fa04 Mon Sep 17 00:00:00 2001 From: "John Pipkin (Sumo Logic)" Date: Thu, 14 Dec 2023 08:55:45 -0600 Subject: [PATCH 2/8] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md --- .../cloud-to-cloud-integration-framework/cloudquery-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md index 13d43e406c..233db5b837 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md @@ -46,7 +46,7 @@ To configure a CloudQueryr Source: 1. **AWS Access Key ID**. Enter the Access Key ID collected from the [AWS Management Console](#vendor-configuration). 1. **AWS Secret Access Key**. Enter the Secret Access Key collected from the [AWS Management Console](#vendor-configuration). 1. **Regions**. Identify and enter your Region based on your Base URL. -1. **Sevices**. Enter the type of service from which the data needs to be collected. +1. **Services**. Enter the type of service from which the data needs to be collected. 1. By default, **Polling Interval** is set to 24 hours. 1. When you are finished configuring the Source, click **Save**. From c5efc22445a18d9b27fea7c969c0c2e5986d3ef7 Mon Sep 17 00:00:00 2001 From: Jagadisha V <129049263+JV0812@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:33:09 +0530 Subject: [PATCH 3/8] link updated --- .../cloud-to-cloud-integration-framework/cloudquery-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md index 13d43e406c..aca24f0d63 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md @@ -26,7 +26,7 @@ This source is available in the [Fed deployment](https://hub.cloudquery.io/plugi | Polling Interval | Data | | :--- | :--- | -| 24 hours | [Data service table data](https://developer.code42.com/api) | +| 24 hours | [Data service table data](https://hub.cloudquery.io/plugins/source/cloudquery/aws/v22.19.2/docs) | ## Setup From 4acc36d433e1bb3a4728cbde3bd166c10806a5ff Mon Sep 17 00:00:00 2001 From: Jagadisha V <129049263+JV0812@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:39:13 +0530 Subject: [PATCH 4/8] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md Co-authored-by: John Pipkin (Sumo Logic) --- .../cloud-to-cloud-integration-framework/cloudquery-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md index 3351b75bf0..c576f72ade 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md @@ -52,7 +52,7 @@ To configure a CloudQueryr Source: ## JSON schema -Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See [JSON to configure Sources](/docs/send-data/use-json-configure-sources) for details.  +Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See [Use JSON to configure Sources](/docs/send-data/use-json-configure-sources) for details.  | Parameter | Type | Value | Required | Description | |:--|:--|:--|:--|:--| From c160de00b09686e89c0adcab85d086a758ac9de2 Mon Sep 17 00:00:00 2001 From: Jagadisha V <129049263+JV0812@users.noreply.github.com> Date: Tue, 19 Dec 2023 14:32:53 +0530 Subject: [PATCH 5/8] Vendor configuration added for the CloudQuery source --- .../cloud-to-cloud-integration-framework/cloudquery-source.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md index c576f72ade..706908caaf 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md @@ -30,6 +30,10 @@ This source is available in the [Fed deployment](https://hub.cloudquery.io/plugi ## Setup +### Vendor configuration + +The integration must be configured with the Access Key ID and Secret Access Key. Refer to the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html) for guidance to create the Access Key ID and Secret Access Key. + ### Source configuration When you create an CloudQuery source, you add it to a Hosted Collector. Before creating the source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see [Configure a Hosted Collector](/docs/send-data/hosted-collectors/configure-hosted-collector). From e57cc09d37d54986fa9e62885d636b33b1d26279 Mon Sep 17 00:00:00 2001 From: Jagadisha V <129049263+JV0812@users.noreply.github.com> Date: Tue, 19 Dec 2023 15:05:54 +0530 Subject: [PATCH 6/8] updated the product list --- docs/integrations/product-list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/integrations/product-list.md b/docs/integrations/product-list.md index bf2b51625b..264331ca11 100644 --- a/docs/integrations/product-list.md +++ b/docs/integrations/product-list.md @@ -194,6 +194,7 @@ Types of integrations: | Thumbnail icon | [Cisco Vulnerability Management](https://umbrella.cisco.com/) | Collector: [Cisco Vulnerability Management Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cisco-vulnerability-management-source/) | | Thumbnail icon | [Citrix](https://www.citrix.com/) | App: [Citrix Cloud](/docs/integrations/saas-cloud/citrix-cloud/)
Collector: [Citrix Cloud Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/citrix-cloud-source/) | | Thumbnail icon | [Cloudflare](https://www.cloudflare.com/) | App: [Cloudflare](/docs/integrations/saas-cloud/cloudflare/)
Partner integration: [Cloudflare](https://developers.cloudflare.com/logs/get-started/enable-destinations/sumo-logic/) | +| | [CloudQuery](https://www.cloudquery.io/) | Collector: [CloudQuery](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source/) | | Thumbnail icon | [Code42 Incydr](https://www.code42.com/incydr/) | Collector: [Code42 Incydr Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/code42-incydr-source/)
Partner integration: [Code42 Incydr](https://support.code42.com/hc/en-us/articles/14827618219671-Integrate-Code42-with-Sumo-Logic) | | Thumbnail icon | [ConfitCat](https://configcat.com/) | Webhook: [ConfitCat](/docs/integrations/webhooks/configcat/) | | Thumbnail icon | [Corelight Zeek](https://corelight.com/products/zeek/) | Collector: [Corelight Zeek - Cloud SIEM](/docs/cse/ingestion/ingestion-sources-for-cloud-siem/corelight-zeek/) | From c693ac739c1b630a2d7085e7f7ca2641be4a128c Mon Sep 17 00:00:00 2001 From: Kim <56411016+kimsauce@users.noreply.github.com> Date: Tue, 6 Feb 2024 16:10:14 -0800 Subject: [PATCH 7/8] CQ link - index --- .../cloud-to-cloud-integration-framework/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md index 30656102aa..f5da420044 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md @@ -174,6 +174,12 @@ In this section, we'll introduce the following concepts:

Sources in the Cloud-to-Cloud Integration Framework need updates over time to maintain data collection.

+
+
+ cloudquery-icon

CloudQuery

+

Learn how to collect inventory from the CloudQuery AWS APIs.

+
+
icon

Code42 Incydr

From cfd46a082bc8253e8a743b935021a72ee0be9914 Mon Sep 17 00:00:00 2001 From: Jagadisha V <129049263+JV0812@users.noreply.github.com> Date: Fri, 22 Mar 2024 10:22:44 +0530 Subject: [PATCH 8/8] Updated the docs for beta release --- docs/integrations/product-list.md | 1 - .../cloudquery-source.md | 8 +++++++- .../cloud-to-cloud-integration-framework/index.md | 6 ------ sidebars.ts | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/docs/integrations/product-list.md b/docs/integrations/product-list.md index ae8da760e3..d9085ae3bd 100644 --- a/docs/integrations/product-list.md +++ b/docs/integrations/product-list.md @@ -194,7 +194,6 @@ Types of integrations: | Thumbnail icon | [Cisco Vulnerability Management](https://umbrella.cisco.com/) | Collector: [Cisco Vulnerability Management Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cisco-vulnerability-management-source/) | | Thumbnail icon | [Citrix](https://www.citrix.com/) | App: [Citrix Cloud](/docs/integrations/saas-cloud/citrix-cloud/)
Collector: [Citrix Cloud Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/citrix-cloud-source/) | | Thumbnail icon | [Cloudflare](https://www.cloudflare.com/) | App: [Cloudflare](/docs/integrations/saas-cloud/cloudflare/)
Partner integration: [Cloudflare](https://developers.cloudflare.com/logs/get-started/enable-destinations/sumo-logic/) | -| | [CloudQuery](https://www.cloudquery.io/) | Collector: [CloudQuery](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source/) | | Thumbnail icon | [Code42 Incydr](https://www.code42.com/incydr/) | Collector: [Code42 Incydr Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/code42-incydr-source/)
Partner integration: [Code42 Incydr](https://support.code42.com/hc/en-us/articles/14827618219671-Integrate-Code42-with-Sumo-Logic) | | Thumbnail icon | [ConfitCat](https://configcat.com/) | Webhook: [ConfitCat](/docs/integrations/webhooks/configcat/) | | Thumbnail icon | [Corelight Zeek](https://corelight.com/products/zeek/) | Collector: [Corelight Zeek - Cloud SIEM](/docs/cse/ingestion/ingestion-sources-for-cloud-siem/corelight-zeek/) | diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md index 706908caaf..2238d3720a 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source.md @@ -1,6 +1,6 @@ --- id: cloudquery-source -title: CloudQuery Source +title: CloudQuery Source (Beta) sidebar_label: CloudQuery tags: - cloud-to-cloud @@ -14,6 +14,12 @@ import MyComponentSource from '!!raw-loader!/files/c2c/cloudquery/example.json'; import TerraformExample from '!!raw-loader!/files/c2c/cloudquery/example.tf'; import useBaseUrl from '@docusaurus/useBaseUrl'; + + + + +

Beta

+ cloudquery-icon The CloudQuery integration is used to pull inventory from the AWS APIs and transform them into the CloudQuery schema and send it to Sumo Logic. diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md index f5da420044..30656102aa 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md @@ -174,12 +174,6 @@ In this section, we'll introduce the following concepts:

Sources in the Cloud-to-Cloud Integration Framework need updates over time to maintain data collection.

-
-
- cloudquery-icon

CloudQuery

-

Learn how to collect inventory from the CloudQuery AWS APIs.

-
-
icon

Code42 Incydr

diff --git a/sidebars.ts b/sidebars.ts index 1659f22e5a..dec45a3ee6 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -271,7 +271,7 @@ module.exports = { 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/citrix-cloud-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cse-aws-ec-inventory-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloud-to-cloud-source-versions', - 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source', + //'send-data/hosted-collectors/cloud-to-cloud-integration-framework/cloudquery-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/code42-incydr-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-fdr-source',