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
NameTypeRequiredDescription
ApiUrlStringYesYour Wiz API Endpoint URL.
ApplicationNameStringYesThe application name that the integration will be used with.
ClientIdStringYesThe client ID of the service account used for authentication, as defined above.
ClientSecretStringYesThe client secret of the service account used for authentication, as defined above.
CollectAuditLogsBooleanYesCollect audit logs
CollectIssuesBooleanYesCollect issues
CollectVulnerabilitiesBooleanYesCollect vulnerabilities
IntegrationNameStringYes
SubsystemNameStringYesThe subsystem name that the integration will be used with.
TokenUrlStringYesYour Wiz Authentication URL.