Transactional endpoint protection
akamai_botman_transactional_endpoint_protection
Returns information about the transactional endpoint protection settings assigned to a security configuration.
Scopes: Security configuration
Example
Basic usage:
terraform {
required_providers {
akamai = {
source = "akamai/akamai"
}
}
}
provider "akamai" {
edgerc = "~/.edgerc"
}
data "akamai_appsec_configuration" "configuration" {
name = "Documentation"
}
data "akamai_botman_transactional_endpoint_protection" "endpoint_protection" {
config_id = data.akamai_appsec_configuration.configuration.config_id
}
output "endpoint_protection_json" {
value = data.akamai_botman_transaction_endpoint_protection.endpoint_protection.json
}
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the transactional endpoint protection settings.
Output options
The following options can be used to determine the information returned and how that returned information is formatted:
json
. JSON-formatted output containing information about your transactional endpoint protection settings.
Updated over 1 year ago