Questions tagged [amazon-waf]

AWS WAF is a web application firewall service that monitors web requests for Amazon CloudFront distributions and restricts access to content. Use AWS WAF to block or allow requests based on conditions, such as the IP addresses that requests originate from or values in the requests.

Documentation: https://aws.amazon.com/documentation/waf/

258 questions
-1
votes
1 answer

Does AWS WAF prevent GET flood?

Let's say I have an imaginary website: https://myimaginarywebsite.com. If I try to exploit it, and I make massive concurrent GET requests (source is just one ip), would WAF have a feature to prevent this? Since this is technically valid traffic but…
edmamerto
  • 7,605
  • 11
  • 42
  • 66
-2
votes
1 answer

issue with aws waf visibility config with terraform

I'm having some trouble deploying the below terraform code. It keeps erroring during apply the following error: │ Error: Insufficient visibility_config blocks │ │ on ignore.tf line 66, in resource "aws_wafv2_web_acl" "this": │ 66: rule { │ …
BigRed247
  • 107
  • 2
  • 14
-2
votes
1 answer

Terraform aws_wafv2_ip_set delete ip on apply

I have a resource aws_wafv2_ip_set that is used by many different modules. variable "addresses" { type = set(string) default = [] } resource "aws_wafv2_ip_set" "ip_set" { ip_address_version = "IPV4" name = var.name scope …
1 2 3
17
18