URL protection policy actions
akamai_appsec_url_protection_policy_actions
BetaHello. Just a note to let you know the underlying API on which this data source is built is general release and has been vetted, but because this is a new feature for our Terraform provider, we've given it beta label.
This status just means we've paused for a bit to get your feedback to make sure this data source works like you need and expect.
Get information about a protection policy's actions.
data "akamai_appsec_url_protection_policy_actions" "my_protection_policy_actions" {
config_id = 12345
security_policy_id = abcd_12345
url_protection_policy_id = 987654
}
output "my_protection_policy_actions" {
value = data.akamai_appsec_url_protection_policy_actions.my_protection_policy_actions
}my_protection_policy_actions = {
config_id = 12345
load_shedding_action = "none"
max_rate_threshold_action = "none"
security_policy_id = "abcd_123456"
url_protection_policy_id = 987654
}Arguments
Pass your security configuration and policy IDs to get your action settings.
| Argument | Required | Description |
|---|---|---|
config_id | ✔️ | Your security configuration's ID. |
security_policy_id | ✔️ | Your security policy's ID. |
url_protection_policy_id | ✔️ | A URL protection policy ID. |
Attributes
Returned to you are the action settings for your protection policy.
| Attribute | Description |
|---|---|
max_rate_threshold_action |
The action taken when the max rate threshold is exceeded. Possible values are:
|
load_shedding_action |
The action taken when load shedding is triggered. Possible values are:
|
Updated 9 days ago
