content_​delivery_​network

Version: v2025-02-18Includes use: Yes

Criterion name: CDN Network

Specifies the type of Akamai network handling the request.

Default criterion

These samples reflect the criterion's default settings. You can use these as is in your configurations or make adjustments based on the criterion's available options.

data "akamai_property_rules_builder" "content_delivery_network" {
  rules_v2025_02_18 {
    name     = "CDN Network"
    comments = "Specifies the type of Akamai network handling the request."
    criterion {
      content_delivery_network {
        match_operator = "IS"
        network = "STAGING"
      }
    }
  }
}
"criterion": [
  {
    "name": "contentDeliveryNetwork",
    "options": {
      "matchOperator": "IS",
      "network": "STAGING"
    }
  }
]

Options

Option Description
match_operator
Specifies the match's logic. Value is one of:
  • IS. Matches the specified network.
  • IS_NOT. Does not match the specified network.
network
Specifies the match's logic. Value is one of:
  • STAGING. Match the staging network.
  • PRODUCTION. Match the production network.