Skip to main content

Cisco Webex Teams

You can configure a Lacework alert channel to forward alerts to a Webex Teams space as an incoming webhook.

Create an Incoming Webhook

To create an incoming webhook, go to Cisco Webex App Hub, enter Incoming Webhooks, log in to your account. and complete the following steps:

  1. Click Connect.
  2. Name your webhook.
  3. Select a space where you want to receive events – you can use an existing space or create a dedicated Lacework space depending on your current workflow.

Create a Cisco Webex Teams Alert Channel from the Lacework Console

  1. Log in to the Lacework Console as a Lacework user with administrative privileges.
  2. Go to Settings > Notifications > Alert channels.
  3. Click + Add new.
  4. Select Cisco Webex Teams.
  5. Click Next.
  6. Follow the steps in the next section.

Create a Cisco Webex Teams Alert Channel

Ensure you have set up your Cisco Spark incoming webhook as described in Create an Incoming Webhook. Then complete the following steps:

  1. Name the integration.
  2. Add the URL of your incoming webhook.
  3. Click Save.
  4. Click Alert rules and configure your required alert routing details/options by leveraging the alert channel you created.

You should now start to receive Lacework event notifications in your chosen Webex Teams space.

Create a Lacework Cisco Webex Teams Alert Channel Using Terraform

For organizations using Terraform to manage their environments, Lacework maintains the Terraform provider for Lacework, which enables configuration of Lacework alert channels using automation.

If you are new to the Lacework Terraform Provider, or Lacework Terraform Modules, read the Terraform for Lacework Overview to learn the basics on how to configure the provider, and more.

For a complete list of custom Terraform resources to manage alert channels in Lacework, see Managing Alert Channels with Terraform.

# Configure Cisco Webex Alert Channel in Lacework
resource "lacework_alert_channel_cisco_webex" "example" {
name = "My Cisco Webex Channel Alert Example"
webhook_url = "https://webexapis.com/v1/webhooks/incoming/api-token"
}

Additional information on the lacework_alert_channel_cisco_webex resource can be found on the Terraform Registry.