123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- resource "akamai_appsec_reputation_profile" "web_attackers_high_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "WEBATCK",
- "name" : "Web Attackers (High Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 9
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "dos_attackers_high_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "DOSATCK",
- "name" : "DoS Attackers (High Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 9
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "scanning_tools_high_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "SCANTL",
- "name" : "Scanning Tools (High Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 9
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "web_attackers_low_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "WEBATCK",
- "name" : "Web Attackers (Low Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 5
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "dos_attackers_low_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "DOSATCK",
- "name" : "DoS Attackers (Low Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 5
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "scanning_tools_low_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "SCANTL",
- "name" : "Scanning Tools (Low Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 5
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "web_scrapers_low_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "WEBSCRP",
- "name" : "Web Scrapers (Low Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 5
- }
- )
- }
-
- resource "akamai_appsec_reputation_profile" "web_scrapers_high_threat" {
- config_id = akamai_appsec_configuration.config.config_id
- reputation_profile = jsonencode(
- {
- "context" : "WEBSCRP",
- "name" : "Web Scrapers (High Threat)",
- "sharedIpHandling" : "NON_SHARED",
- "threshold" : 9
- }
- )
- }
|