GuideReference
TrainingSupportCommunity
Guide

Siem settings

akamai_appsec_siem_settings

Returns the SIEM (Security Event and Information Management) settings for a security configuration.

Scopes: Security configuration

Example

terraform {
  required_providers {
    akamai = {
      source = "akamai/akamai"
    }
  }
}

provider "akamai" {
  edgerc = "~/.edgerc"
}

// USE CASE: User wants to view the SIEM settings for a security configuration.

data "akamai_appsec_configuration" "configuration" {
  name = "Documentation"
}

data "akamai_appsec_siem_settings" "siem_settings" {
  config_id = data.akamai_appsec_configuration.configuration.config_id
}

output "siem_settings_json" {
  value = data.akamai_appsec_siem_settings.siem_settings.json
}

output "siem_settings_output" {
  value = data.akamai_appsec_siem_settings.siem_settings.output_text
}

Argument reference

This data source supports the following arguments:

  • config_id (Required). Unique identifier of the security configuration you want to return information for.

Output options

The following options can be used to determine the information returned, and how that returned information is formatted:

  • json. JSON-formatted list of the SIEM setting information.
  • output_text. Tabular report showing the SIEM setting information.