allow_https_downgrade
Version: v2025-02-18 | Includes use: Yes |
---|
Behavior name: Protocol Downgrade (HTTPS Downgrade to Origin)
Passes HTTPS requests to origin as HTTP. This is useful when incorporating Standard TLS or Akamai's shared certificate delivery security with an origin that serves HTTP traffic.
Default behavior
These samples reflect the behavior's default settings. You can use these as is in your configurations or make adjustments based on the behavior's available options.
data "akamai_property_rules_builder" "allow_https_downgrade" {
rules_v2025_02_18 {
name = "Protocol Downgrade (HTTPS Downgrade to Origin)"
comments = "Passes HTTPS requests to origin as HTTP."
behavior {
allow_https_downgrade {
enabled = true
}
}
}
}
"behaviors": [
{
"name": "allowHTTPSDowngrade",
"options": {
"enabled": true
}
}
]
Options
Option | Description |
---|---|
enabled |
Downgrades to HTTP protocol for the origin server.
|
Updated 10 days ago