VMware Workspace One Source
VMware Workspace ONE is a comprehensive digital workspace platform that combines unified endpoint management, access management, and application management capabilities. It enables organizations to securely deliver and manage any app on any device, providing a seamless and productive user experience. Workspace ONE empowers IT teams to simplify device management, enhance security, and increase workforce productivity through a unified and integrated process.
The VMware Workspace One source collects the device details and corresponding list of applications for the devices from the VMware Workspace One platform and send them to Sumo Logic.
Data collected
Polling Interval | Data |
---|---|
24 hours | Devices |
24 hours | Device Applications |
Setup
Vendor configuration
The VMware Workspace One source supports O-Auth-based authentication and requires you to provide the Endpoint URL, Auth URL, Client ID, and Client Secret key to access the data.
Endpoint URL
Endpoint URL will be the domain URL of the VMware Workspace console. For example, https://as135.awmdm.com
.
Auth URL
The following table contains the Auth URLs based on the location of your VMware Workspace One API account:
Region | Auth URL |
---|---|
All UAT Environment | https://uat.uemauth.vmwservices.com/connect/token |
Australia | https://apac.uemauth.vmwservices.com/connect/token |
Canada | https://na.uemauth.vmwservices.com/connect/token |
Germany | https://emea.uemauth.vmwservices.com/connect/token |
Hong Kong | https://apac.uemauth.vmwservices.com/connect/token |
India | https://apac.uemauth.vmwservices.com/connect/token |
Japan | https://apac.uemauth.vmwservices.com/connect/token |
Singapore | https://apac.uemauth.vmwservices.com/connect/token |
United Kingdom | https://emea.uemauth.vmwservices.com/connect/token |
United States | https://na.uemauth.vmwservices.com/connect/token |
Client ID and Client Secret
To generate the Client ID and Client Secret, refer to the Create an OAuth Client to Use for API Commands (SaaS) section.
Source configuration
When you create a VMware Workspace One Source, you add it to a Hosted Collector. Before creating the Source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see Configure a Hosted Collector and Source.
To configure a VMware Workspace One Source:
- Classic UI. In the main Sumo Logic menu, select Manage Data > Collection > Collection.
New UI. In the Sumo Logic top menu select Configuration, and then under Data Collection select Collection. You can also click the Go To... menu at the top of the screen and select Collection. - On the Collection page, click Add Source next to a Hosted Collector.
- Search for and select VMware Workspace One.
- Enter a Name for the Source. The description is optional.
- (Optional) For Source Category, enter any string to tag the output collected from the Source. Category metadata is stored in a searchable field called
_sourceCategory
. - (Optional) Fields. Click the +Add button to define the fields you want to associate. Each field needs a name (key) and value.
- A green circle with a check mark is shown when the field exists in the Fields table schema.
- 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 is ignored, known as dropped.
- Endpoint URL. Enter the VMware Workspace One platform endpoint URL. For example,
https://as135.awmdm.com
. - Auth URL. Enter the API region URL to fetch the auth token collected from the VMware Workspace One platform. For example,
https://uat.uemauth.vmwservices.com
. - Client ID. Enter the Client ID of your account collected from the VMware Workspace One platform. For example,
cfea26d59bd542488ea706b025564d42
. - Client Secret. Enter the Client Secret key of your account collected from the VMware Workspace One platform. For example,
E2220271xxxxxxxxxxxxxxxxxxxxx4556634
. - (Optional) Device Type. Enter the list of device types to collect information.
- Select the Collect Apps Details checkbox to collect the apps details.
- When you are finished configuring the Source, click Submit.
JSON schema
Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See Use JSON to Configure Sources for details.
Parameter | Type | Value | Required | Description |
---|---|---|---|---|
schemaRef | JSON Object | {"type":"VMware Workspace One"} | Yes | Define the specific schema type. |
sourceType | String | "Universal" | Yes | Type of source. |
config | JSON Object | Configuration object | Yes | Source type specific values. |
Configuration Object
Parameter | Type | Required | Default | Description | Example |
---|---|---|---|---|---|
name | String | Yes | null | Type a desired name of the source. The name must be unique per Collector. This value is assigned to the metadata field _source . | "mySource" |
description | String | No | null | Type a description of the source. | "Testing source" |
category | String | No | null | Type a category of the source. This value is assigned to the metadata field _sourceCategory . See best practices for details. | "mySource/test" |
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"} |
requestEndpoint | String | Yes | null | The base URL to fetch the data from the VMware Workspace One source. | https://as135.awmdm.com |
authURL | String | Yes | null | The API URL to fetch the authentication token from the VMware Workspace One source. | https://uat.uemauth.vmwservices.com |
clientID | String | Yes | null | Client ID of your account. | cfea26d59bd542488ea706b025564d42 |
clientSecret | String | Yes | null | Client Secret of your account. | E2220271xxxxxxxxxxxxxxxxxxxxx4556634 |
deviceType | String | No | null | Platform type of the device. | Apple, Android, and/or WindowsPC |
pollingIntervalVulnerabilityMin | String | Yes | 24 hours | Time interval (in minutes) after which the source will check for new data. Default: 24 hours Minimum: 12 hours Maximum: 24 hours | |
collectAppsDetails | Boolean | No | False | Specify if you need to collect the app details. |
JSON example
{
"api.version": "v1",
"source": {
"config": {
"name": "VMWare Workspace One",
"requestEndpoint": "https://as135.awmdm.com",
"authURL": "https://uat.uemauth.vmwservices.com",
"clientID": "3xxxx62vvccbv4f6fbaxxxxxxx748e201",
"clientSecret": "678adsfsxxxxxxxxxxxxxxxxfsf1",
"deviceType": [
"Apple",
"Android",
"WindowsPC"
],
"pollingIntervalSearchHour": "24h",
"collectAppsDetails": true
},
"schemaRef": {
"type": "VMware Workspace One"
},
"sourceType": "Universal"
}}
Terraform example
resource "sumologic_cloud_to_cloud_source" "vmware-workspace-one-source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "VMware Workspace One"
}
config = jsonencode({
"name": "VMWare Workspace One",
"requestEndpoint": "https://as135.awmdm.com",
"authURL": "https://uat.uemauth.vmwservices.com",
"clientID": "3xxxx62vvccbv4f6fbaxxxxxxx748e201",
"clientSecret": "678adsfsxxxxxxxxxxxxxxxxfsf1",
"deviceType": [
"Apple",
"Android",
"WindowsPC"
],
"pollingIntervalSearchHour": "24h",
"collectAppsDetails": true
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}
FAQ
Click here for more information about Cloud-to-Cloud sources.