Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 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**.

Expand All @@ -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 | ` ` | Timezone of Admin LastPass account. |
| pollingIntervalMinutes | Integer | No | 5 | How frequently the integration should poll to LastPass. <br /> **Options**: 5m, 10m, 15m, 30m, 1h, or 24h. | |

### JSON example
Expand Down
9 changes: 5 additions & 4 deletions static/files/c2c/lastpass/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
"type": "LastPass"
},
"config": {
"name": "lastpass",
"cid": "*****",
"apiSecret": "***********",
"pollingInterval": 5
"name": "lastpass",
"cid": "*****",
"apiSecret": "***********",
"timeZone": "UTC",
"pollingInterval": 5
},
"sourceType": "Universal"
}
Expand Down
1 change: 1 addition & 0 deletions static/files/c2c/lastpass/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ resource "sumologic_cloud_to_cloud_source" "lastpass-source" {
"name": "lastpass",
"cid": "*****",
"apiSecret": "*************",
"timeZone": "UTC",
"pollingInterval": 5
})
}
Expand Down
Loading