VictorOps
You can configure Lacework to forward alerts to specific VictorOps groups using a VictorOps REST endpoint.
Create a REST Endpoint
- In VictorOps, navigate to Settings > Alert Behavior > Integrations > REST – Generic
- If the REST endpoint integration is not enabled, click the blue Enable button to generate your endpoint destination URL.
Before providing the URL to Lacework, you must replace everything after the final forward slash with the routing key that you want to use for the integration. Alert routing gives you the ability to assign specific types of alerts to specific groups. The final URL must use this form:
https://alert.victorops.com/integrations/...../[routing_key]
For details about creating REST endpoints, see VictorOps: REST Endpoint and VictorOps Routing Keys.
Create a VictorOps Alert Channel from the Lacework Console
Navigate to VictorOps
- Log in to the Lacework Console as a Lacework user with administrative privileges.
- Go to Settings > Notifications > Alert channels.
- Click + Add new.
- Select VictorOps.
- Click Next.
- Follow the steps in the next section.
Create a VictorOps Alert Channel
Ensure you have created a VictorOps REST endpoint as described in Create a REST Endpoint. Then complete the following steps:
- Name the channel.
- Add the VictorOps REST endpoint URL.
- Click Save.
- 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 alert notifications in your chosen VictorOps group.
Create a Lacework VictorOps 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 Victor Ops Alert Channel in Lacework
resource "lacework_alert_channel_victorops" "example" {
name = "Victor Ops example"
webhook_url = "https://alert.victorops.com/integrations/generic/20131114/alert/31e945ee-5cad-44e7-afb0-97c20ea80dd8/database"
}
Additional information on the lacework_alert_channel_victorops
resource can be found on the Terraform Registry.