12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- resource "aws_wafregional_size_constraint_set" "size_restrictions" {
- name = "${var.waf_prefix}-generic-size-restrictions"
- size_constraints {
- text_transformation = "NONE"
- comparison_operator = "GT"
- size = "4096"
- field_to_match {
- type = "BODY"
- }
- }
- size_constraints {
- text_transformation = "NONE"
- comparison_operator = "GT"
- size = "4093"
- field_to_match {
- type = "HEADER"
- data = "cookie"
- }
- }
- size_constraints {
- text_transformation = "NONE"
- comparison_operator = "GT"
- size = "1024"
- field_to_match {
- type = "QUERY_STRING"
- }
- }
- size_constraints {
- text_transformation = "NONE"
- comparison_operator = "GT"
- size = "512"
- field_to_match {
- type = "URI"
- }
- }
- }
- resource "aws_wafregional_size_constraint_set" "csrf_token_set" {
- name = "${var.waf_prefix}-generic-match-csrf-token"
- size_constraints {
- text_transformation = "NONE"
- comparison_operator = "GT"
- size = "50"
- field_to_match {
- type = "HEADER"
- data = "cookie"
- }
- }
- size_constraints {
- text_transformation = "NONE"
- comparison_operator = "LT"
- size = "256"
- field_to_match {
- type = "HEADER"
- data = "cookie"
- }
- }
- }
|