Rule upgrade details
akamai_appsec_rule_upgrade_details
Returns information indicating which of your Kona Rule Sets, if any, need to be updated. A value of false indicates that no updates are required.
data "akamai_appsec_rule_upgrade_details" "my_upgrade_details" {
config_id = 12345
security_policy_id = "abcd_123456"
}
output "my_upgrade_details" {
value = data.akamai_appsec_rule_upgrade_details.my_upgrade_details
}
Arguments
Argument | Required | Description |
---|---|---|
config_id | ✔️ | A security configuration ID. |
security_policy_id | ✔️ | A security policy ID. |
Attributes
Attribute | Description |
---|---|
output_text | Tabular report showing changes (additions and deletions) to the rules for the specified security policy |
json | JSON-formatted list of the changes (additions and deletions) to the rules for the specified security policy. |
Updated 2 days ago