選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

slow-post.tf 355B

123456789
  1. // Slow Post Protection
  2. resource "akamai_appsec_slow_post" "slow_post" {
  3. config_id = akamai_appsec_configuration.config.config_id
  4. security_policy_id = akamai_appsec_security_policy.security_policy.security_policy_id
  5. slow_rate_action = "alert"
  6. slow_rate_threshold_rate = 10
  7. slow_rate_threshold_period = 60
  8. }