Hostname coverage overlapping
akamai_appsec_hostname_coverage_overlapping
Returns information about any other configuration versions that contain a hostname found in the current configuration version.
Scopes: Security configuration; hostname
Example
terraform {
  required_providers {
    akamai = {
      source = "akamai/akamai"
    }
  }
}
provider "akamai" {
  edgerc = "~/.edgerc"
}
data "akamai_appsec_configuration" "configuration" {
  name = "Documentation"
}
data "akamai_appsec_hostname_coverage_overlapping" "test" {
  config_id = data.akamai_appsec_configuration.configuration.config_id
  hostname  = "documentation.akamai.com"
}
Argument reference
This resource supports the following arguments:
- config_id(Required). Unique identifier of the security configuration you want to return information for.
- hostname(Required). Name of the host 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 overlap information.
- output_text. Tabular report of the overlap information.
Updated almost 2 years ago
