Skip to content

Commit

Permalink
remove ddos_mitigation feature
Browse files Browse the repository at this point in the history
  • Loading branch information
drpotters committed Jun 27, 2024
1 parent f40b3c9 commit 0ddb40a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "volterra_origin_pool" "aws-op" {
namespace = "system"
name = local.aws_site_name
}
}
}
}
}
}
Expand Down Expand Up @@ -273,12 +273,15 @@ resource "volterra_http_loadbalancer" "lb_https" {
}

#DDoS Configuration
/*
dynamic "enable_ddos_detection" {
for_each = local.xc_ddos_def ? [1] : []
content {
enable_auto_mitigation {}
}
}
*/

dynamic "ddos_mitigation_rules" {
for_each = local.xc_ddos_def ? [1] : []
content {
Expand Down

0 comments on commit 0ddb40a

Please sign in to comment.