skip to Main Content

Mitigating HTTP flood attacks on AWS: Nginx configuration vs. AWS Shield Advanced and Web Application Firewall

I'm currently researching the best options for mitigating and avoiding HTTP flood attacks while hosting infrastructure on AWS. Here's an article published from cloudflare.com recently discussing this matter https://blog.cloudflare.com/cloudflare-mitigates-record-breaking-71-million-request-per-second-ddos-attack/ Based on my understanding, AWS Shield standard may not cover something…

VIEW QUESTION

Amazon web services – An argument named "vpc_security_group_ids" is not expected here … not sure why i am getting this error

My terraform security local ec2 module looks like so resource "aws_instance" "mysql" { ami = data.aws_ami.latest_amazon_linux.id instance_type = var.instance_type # override this at module call key_name = aws_key_pair.my_local_pubkey.key_name # override this at module call vpc_security_group_ids = [var.default_sg] # override security…

VIEW QUESTION
Back To Top
Search