aws_waf_size_constraint_set
Provides a WAF Size Constraint Set Resource
Example Usage
resource "aws_waf_size_constraint_set" "size_constraint_set" {
name = "tfsize_constraints"
size_constraints {
text_transformation = "NONE"
comparison_operator = "EQ"
size = "4096"
field_to_match {
type = "BODY"
}
}
}
Argument Reference
The following arguments are supported:
-
name- (Required) The name or description of the Size Constraint Set. -
size_constraints- (Optional) Specifies the parts of web requests that you want to inspect the size of.
Nested Blocks
size_constraints
Arguments
-
field_to_match- (Required) Specifies where in a web request to look for the size constraint. -
comparison_operator- (Required) The type of comparison you want to perform. e.g.EQ,NE,LT,GT. See docs for all supported values. -
size- (Required) The size in bytes that you want to compare against the size of the specifiedfield_to_match. Valid values are between 0 - 21474836480 bytes (0 - 20 GB). -
text_transformation- (Required) Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF. If you specify a transformation, AWS WAF performs the transformation onfield_to_matchbefore inspecting a request for a match. e.g.CMD_LINE,HTML_ENTITY_DECODEorNONE. See docs for all supported values. Note: if you chooseBODYastype, you must chooseNONEbecause CloudFront forwards only the first 8192 bytes for inspection.
field_to_match
Arguments
-
data- (Optional) WhentypeisHEADER, enter the name of the header that you want to search, e.g.User-AgentorReferer. Iftypeis any other value, omit this field. -
type- (Required) The part of the web request that you want AWS WAF to search for a specified string. e.g.HEADER,METHODorBODY. See docs for all supported values.
Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id- The ID of the WAF Size Constraint Set.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/waf_size_constraint_set.html