Skip to content

Commit f557879

Browse files
committed
updated the configuration table and example
1 parent 398f713 commit f557879

File tree

3 files changed

+42
-33
lines changed

3 files changed

+42
-33
lines changed

docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/mimecast-source.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,11 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Ma
9393
| description | String | No | `null` | Type a description of the source. | `"Testing source"`
9494
| 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"`
9595
| 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"}` |
96-
| clientID | String | Yes | `null` | Client Id for your Mimecast app. | |
97-
| clientSecret | String | Yes | `null`| Secret Key for your Mimecast app. | |
96+
| domain | String | Yes | `null` | Enter your customer specific Base URL. | |
97+
| application_key | String | Yes | `null` | Application Key for your Mimecast app. | |
98+
| application_id | String | Yes | `null`| Application ID for your Mimecast app. | |
99+
| access_key | String | Yes | `null`| Access Key for your Mimecast app. | |
100+
| secret_key | String | Yes | `null`| Secret Key for your Mimecast app. | |
98101
| dataCollection | String | Yes | | Supported API. | |
99102

100103
### JSON example
Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
{
2-
"api.version": "v1",
3-
"source": {
4-
"config": {
5-
"name": "Mimecast",
6-
"description": "Mimecast",
7-
"category": "Mimecast",
8-
"clientID": "XXXgXXXXXXXxfkNsaXXXXo8VqkXXXixRf5VlnwcXXXXXchX",
9-
"clientSecret": "XXXgXXXXXXXxfkNsaXXXXo8VqkXXXixRf5VlnwcXXXXXchX",
10-
"dataCollection": [
11-
"siem",
12-
"dlp",
13-
"auditEvent",
14-
"holdMessageList"
15-
]
16-
},
17-
"schemaRef": {
18-
"type": "Mimecast"
19-
},
20-
"sourceType": "Universal"
21-
}
2+
"api.version": "v1",
3+
"source": {
4+
"config": {
5+
"name": "Mimecast",
6+
"description": "Mimecast",
7+
"category": "Mimecast",
8+
"domain": "us-api.mimecast.com",
9+
"application_key": "a32axxxx-xxxx-xxxx-xxxx-xxxxxxb189bd",
10+
"application_id": "e399xxxx-xxxx-xxxx-xxxx-xxxxxx71eead",
11+
"access_key": "uGAN9BAxxxxx-xxxxxxxl8Sp06XEdky6tY",
12+
"secret_key": "zjRtw77K+7rtFYWxxxxxxxxxxxjB+DINTfzA",
13+
"supported_apis": [
14+
"SIEM",
15+
"DLP",
16+
"Audit Events",
17+
"Hold Message List"
18+
]
19+
},
20+
"schemaRef": {
21+
"type": "Mimecast"
22+
},
23+
"sourceType": "Universal"
24+
}
2225
}

static/files/c2c/mimecast/example.tf

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ resource "sumologic_cloud_to_cloud_source" "mimecast-source" {
44
type = "Mimecast"
55
}
66
config = jsonencode({
7-
"name": "Mimecast",
8-
"description": "Mimecast",
9-
"category": "Mimecast",
10-
"clientID": "XXXgXXXXXXXxfkNsaXXXXo8VqkXXXixRf5VlnwcXXXXXchX",
11-
"clientSecret": "XXXgXXXXXXXxfkNsaXXXXo8VqkXXXixRf5VlnwcXXXXXchX",
12-
"dataCollection": [
13-
"siem",
14-
"dlp",
15-
"auditEvent",
16-
"holdMessageList"
17-
]
7+
"name": "Mimecast",
8+
"description": "Mimecast",
9+
"category": "Mimecast",
10+
"domain": "us-api.mimecast.com",
11+
"application_key": "a32axxxx-xxxx-xxxx-xxxx-xxxxxxb189bd",
12+
"application_id": "e399xxxx-xxxx-xxxx-xxxx-xxxxxx71eead",
13+
"access_key": "uGAN9BAxxxxx-xxxxxxxl8Sp06XEdky6tY",
14+
"secret_key": "zjRtw77K+7rtFYWxxxxxxxxxxxjB+DINTfzA",
15+
"supported_apis": [
16+
"SIEM",
17+
"DLP",
18+
"Audit Events",
19+
"Hold Message List"
20+
]
1821
})
1922
}
2023
resource "sumologic_collector" "collector" {

0 commit comments

Comments
 (0)