Skip to content

Commit 5f4bcb4

Browse files
committed
chore: Update config Schema
1 parent b258cad commit 5f4bcb4

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Connector Configurations
2+
3+
Below is an exhaustive enumeration of all configurable parameters available, each accompanied by detailed explanations of their purposes, default behaviors, and usage guidelines to help you understand and utilize them effectively.
4+
5+
### Type: `object`
6+
7+
| Property | Type | Required | Possible values | Default | Description |
8+
| -------- | ---- | -------- | --------------- | ------- | ----------- |
9+
| OPENCTI_URL | `string` || Format: [`uri`](https://json-schema.org/understanding-json-schema/reference/string#built-in-formats) | | The base URL of the OpenCTI instance. |
10+
| OPENCTI_TOKEN | `string` || string | | The API token to connect to OpenCTI. |
11+
| DOMAINTOOLS_API_USERNAME | `string` || string | | The username required for the authentication on DomainTools API. |
12+
| DOMAINTOOLS_API_KEY | `string` || Format: [`password`](https://json-schema.org/understanding-json-schema/reference/string#built-in-formats) | | The password required for the authentication on DomainTools API. |
13+
| CONNECTOR_NAME | `string` | | string | `"Domaintools"` | The name of the connector. |
14+
| CONNECTOR_SCOPE | `array` | | string | `["Domain-Name", "Ipv4-Addr"]` | The scope of the connector. |
15+
| CONNECTOR_LOG_LEVEL | `string` | | `debug` `info` `warn` `warning` `error` | `"error"` | The minimum level of logs to display. |
16+
| CONNECTOR_TYPE | `const` | | `INTERNAL_ENRICHMENT` | `"INTERNAL_ENRICHMENT"` | |
17+
| CONNECTOR_AUTO | `boolean` | | boolean | `false` | Whether the connector should run automatically when an entity is created or updated. |
18+
| DOMAINTOOLS_MAX_TLP | `string` | | string | `"TLP:AMBER"` | The maximal TLP of the observable being enriched. |

internal-enrichment/domaintools/__metadata__/connector_config_schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
},
2222
"CONNECTOR_SCOPE": {
2323
"default": [
24-
"Domain-Name,Ipv4-Addr"
24+
"Domain-Name",
25+
"Ipv4-Addr"
2526
],
2627
"description": "The scope of the connector.",
2728
"items": {

0 commit comments

Comments
 (0)