Skip to content

Wiz

Overview

Wiz audit logs, vulnerabilities, and issues provide detailed insights into configuration changes and potential risks within your cloud environment. Read these logs to obtain clear context while exploring your cloud resources.

For more information about this integration, click here.

How to use with Terraform

To deploy this integration using Terraform, you can use the coralogix_integration resource provided by the Coralogix Terraform provider. Below is an example configuration:

resource "coralogix_integration" "wiz-collector" {
  integration_key = "wiz-collector"
  version         = "0.0.1"

  parameters = {
    IntegrationName = "Wiz"
    ApplicationName = "<ApplicationName>"
    SubsystemName = "Wiz"
    ClientId = "<ClientId>"
    ClientSecret = "<ClientSecret>"
    ApiUrl = "<ApiUrl>"
    TokenUrl = "<TokenUrl>"
    CollectAuditLogs = false
    CollectIssues = false
    CollectVulnerabilities = false
  }
}

Replace the placeholder values with your actual configuration parameters. Refer to the parameter table below for required fields and their descriptions.

Revisions

0.0.1
Name Type Required Description
ApiUrl String Yes Your Wiz API Endpoint URL.
ApplicationName String Yes The application name that the integration will be used with.
ClientId String Yes The client ID of the service account used for authentication, as defined above.
ClientSecret String Yes The client secret of the service account used for authentication, as defined above.
CollectAuditLogs Boolean Yes Collect audit logs
CollectIssues Boolean Yes Collect issues
CollectVulnerabilities Boolean Yes Collect vulnerabilities
IntegrationName String Yes
SubsystemName String Yes The subsystem name that the integration will be used with.
TokenUrl String Yes Your Wiz Authentication URL.