GuideReference
TrainingSupportCommunity
Guide

Malware protection

akamai_appsec_malware_protection

Enables or disables malware protection for a security policy.

Scopes: Security policy

Example

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

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

// USE CASE: User wants to enable or disable malware protections.

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

resource "akamai_appsec_malware_protection" "protection" {
  config_id          = data.akamai_appsec_configuration.configuration.config_id
  security_policy_id = "gms1_134637"
  enabled            = true
}

Argument reference

This resource supports the following arguments:

  • config_id (Required). Unique identifier of the security configuration associated with the malware protection settings being modified.
  • security_policy_id (Required). Unique identifier of the security policy associated with the malware protection settings being modified.
  • enabled (Required). Set to true to enable malware protection; set to false to disable malware protection.

Output options

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

output_text. Tabular report showing the current protection settings for the security policy.