You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

advanced-settings.tf 917B

12345678910111213141516171819202122232425262728293031
  1. resource "akamai_botman_client_side_security" "client_side_security" {
  2. config_id = akamai_appsec_configuration.config.config_id
  3. client_side_security = jsonencode(
  4. {
  5. "useAllSecureTraffic" : false,
  6. "useSameSiteCookies" : false,
  7. "useStrictCspCompatibility" : false
  8. }
  9. )
  10. }
  11. resource "akamai_botman_transactional_endpoint_protection" "transactional_endpoint_protection" {
  12. config_id = akamai_appsec_configuration.config.config_id
  13. transactional_endpoint_protection = jsonencode(
  14. {
  15. "inlineTelemetry" : {
  16. "aggressiveThreshold" : 90,
  17. "detectionSetType" : "BOT_SCORE",
  18. "safeguardAction" : "USE_STRICT_ACTION",
  19. "strictThreshold" : 50
  20. },
  21. "standardTelemetry" : {
  22. "aggressiveThreshold" : 90,
  23. "detectionSetType" : "BOT_SCORE",
  24. "safeguardAction" : "USE_STRICT_ACTION",
  25. "strictThreshold" : 50
  26. }
  27. }
  28. )
  29. }