You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- SUBLIME_FIRST_RUN_DURATION=PT8H # Duration for initial data fetch in ISO 8601 format (P14D = 14 days, PT1H = 1 hour)
60
-
- SUBLIME_FORCE_HISTORICAL=false # Force historical fetch by overriding existing state
61
-
- SUBLIME_BATCH_SIZE=100 # Number of message groups to process per batch (default: 100)
62
-
```
31
+
## Configuration
32
+
33
+
Find all the configuration variables available here: [Connector Configurations](./__metadata__/CONNECTOR_CONFIG_DOC.md)
34
+
35
+
_The `opencti` and `connector` options in the `docker-compose.yml` and `config.yml` are the same as for any other connector.
36
+
For more information regarding variables, please refer to [OpenCTI's documentation on connectors](https://docs.opencti.io/latest/deployment/connectors/)._
37
+
63
38
64
39
### Deployment
65
40
@@ -80,36 +55,6 @@ Monitor connector logs:
80
55
docker compose logs -f connector-sublime
81
56
```
82
57
83
-
## Configuration Reference
84
-
85
-
### Required Variables
86
-
87
-
| Variable | Description |
88
-
|----------|-------------|
89
-
|`OPENCTI_URL`| OpenCTI platform URL |
90
-
|`OPENCTI_TOKEN`| OpenCTI API authentication token |
91
-
|`CONNECTOR_ID`| Unique identifier for this connector instance |
92
-
|`CONNECTOR_NAME`| Display name for the connector (`Sublime Security Incidents`) |
93
-
|`CONNECTOR_SCOPE`| Connector scope identifier |
94
-
|`SUBLIME_URL`| Sublime platform URL for API connections |
95
-
|`SUBLIME_TOKEN`| Sublime Security API authentication token |
96
-
97
-
### Optional Variables
98
-
99
-
| Variable | Default | Description |
100
-
|----------|---------|-------------|
101
-
|`CONNECTOR_DURATION_PERIOD`|`PT3M`| Polling interval (ISO 8601 duration format) |
102
-
|`SUBLIME_INCIDENT_TYPE`|`phishing`| Label to apply to incident type |
103
-
|`SUBLIME_INCIDENT_PREFIX`|`Sublime Incident - `| Prefix for incident object names |
104
-
|`SUBLIME_CASE_PREFIX`|`Case - `| Prefix for case object names |
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 |
| 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. |
| CONNECTOR_NAME |`string`|| string |`"Sublime Security"`| The name of the connector. |
13
+
| CONNECTOR_SCOPE |`array`|| string |`["sublime"]`| The scope or type of data the connector is importing, either a MIME type or Stix Object (for information only). |
14
+
| CONNECTOR_LOG_LEVEL |`string`||`debug``info``warn``warning``error`|`"error"`| The minimum level of logs to display. |
| CONNECTOR_DURATION_PERIOD |`string`|| Format: [`duration`](https://json-schema.org/understanding-json-schema/reference/string#built-in-formats)|`"PT3M"`| The period of time to await between two runs of the connector. |
17
+
| SUBLIME_URL |`string`|| Format: [`uri`](https://json-schema.org/understanding-json-schema/reference/string#built-in-formats)|`"https://platform.sublime.security"`| Sublime platform URL for API connections. |
18
+
| SUBLIME_INCIDENT_TYPE |`string`|| string |`"phishing"`| Label to apply to incident type. |
| SUBLIME_FIRST_RUN_DURATION |`string`|| Format: [`duration`](https://json-schema.org/understanding-json-schema/reference/string#built-in-formats)|`"PT8H"`| ISO 8601 duration for initial data fetch on first run. |
26
+
| SUBLIME_FORCE_HISTORICAL |`boolean`|| boolean |`false`| Force historical fetch ignoring existing state for correcting improper states. |
27
+
| SUBLIME_BATCH_SIZE |`integer`|| integer |`100`| Number of messages per processing batch. |
28
+
| SUBLIME_TLP_LEVEL |`string`||`clear``white``green``amber``amber+strict``red`|`"amber"`| TLP marking level applied to created STIX entities. |
0 commit comments