Skip to content

Commit c31a6b9

Browse files
CONN-4131: update lastpass doc (#5062)
* CONN-4131: update lastpass doc * Update lastpass-source.md * Update lastpass-source.md * Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md * Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md * Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md --------- Co-authored-by: Jagadisha V <[email protected]>
1 parent 95b1f15 commit c31a6b9

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ To configure the LastPass Source:
4444
* ![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.
4545
1. In **CID (Account Number)**, enter your CID account number collected from the LastPass platfrorm.
4646
1. In **API Secret**, enter your API Secret ID collected from the LastPass platfrorm.
47+
1. In **TimeZone**, enter the timezone of admin LastPass account.
4748
1. **Polling Interval**. You have the option to select how often to poll for base entry events. Default is 5 minutes.
4849
1. When you are finished configuring the source, click **Save**.
4950

@@ -67,6 +68,7 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Ma
6768
| 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"}` |
6869
| cid | Integer | Yes | `null` | The CID account number collected from the LastPass platform. | |
6970
| apiSecret | String | Yes | `null` | The API Secret ID collected from the LastPass platform. | |
71+
| timeZone | String | No | `null` | Timezone of admin LastPass account. |
7072
| pollingIntervalMinutes | Integer | No | 5 | How frequently the integration should poll to LastPass. <br /> **Options**: 5m, 10m, 15m, 30m, 1h, or 24h. | |
7173

7274
### JSON example

static/files/c2c/lastpass/example.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
"type": "LastPass"
66
},
77
"config": {
8-
"name": "lastpass",
9-
"cid": "*****",
10-
"apiSecret": "***********",
11-
"pollingInterval": 5
8+
"name": "lastpass",
9+
"cid": "*****",
10+
"apiSecret": "***********",
11+
"timeZone": "UTC",
12+
"pollingInterval": 5
1213
},
1314
"sourceType": "Universal"
1415
}

static/files/c2c/lastpass/example.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ resource "sumologic_cloud_to_cloud_source" "lastpass-source" {
77
"name": "lastpass",
88
"cid": "*****",
99
"apiSecret": "*************",
10+
"timeZone": "UTC",
1011
"pollingInterval": 5
1112
})
1213
}

0 commit comments

Comments
 (0)