diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md index 54d0f9e0d9..134d91b055 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/lastpass-source.md @@ -44,6 +44,7 @@ To configure the LastPass Source: * ![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. In **CID (Account Number)**, enter your CID account number collected from the LastPass platfrorm. 1. In **API Secret**, enter your API Secret ID collected from the LastPass platfrorm. +1. In **TimeZone**, enter the timezone of admin LastPass account. 1. **Polling Interval**. You have the option to select how often to poll for base entry events. Default is 5 minutes. 1. When you are finished configuring the source, click **Save**. @@ -67,6 +68,7 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Ma | 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"}` | | cid | Integer | Yes | `null` | The CID account number collected from the LastPass platform. | | | apiSecret | String | Yes | `null` | The API Secret ID collected from the LastPass platform. | | +| timeZone | String | No | `null` | Timezone of admin LastPass account. | | pollingIntervalMinutes | Integer | No | 5 | How frequently the integration should poll to LastPass.
**Options**: 5m, 10m, 15m, 30m, 1h, or 24h. | | ### JSON example diff --git a/static/files/c2c/lastpass/example.json b/static/files/c2c/lastpass/example.json index 170e437f4d..3a464c39c8 100644 --- a/static/files/c2c/lastpass/example.json +++ b/static/files/c2c/lastpass/example.json @@ -5,10 +5,11 @@ "type": "LastPass" }, "config": { - "name": "lastpass", - "cid": "*****", - "apiSecret": "***********", - "pollingInterval": 5 + "name": "lastpass", + "cid": "*****", + "apiSecret": "***********", + "timeZone": "UTC", + "pollingInterval": 5 }, "sourceType": "Universal" } diff --git a/static/files/c2c/lastpass/example.tf b/static/files/c2c/lastpass/example.tf index 1dabd1edf5..b7f2025adf 100644 --- a/static/files/c2c/lastpass/example.tf +++ b/static/files/c2c/lastpass/example.tf @@ -7,6 +7,7 @@ resource "sumologic_cloud_to_cloud_source" "lastpass-source" { "name": "lastpass", "cid": "*****", "apiSecret": "*************", + "timeZone": "UTC", "pollingInterval": 5 }) }