github.com/ves/terraform@v0.8.0-beta2/website/source/docs/providers/aws/r/waf_xss_match_set.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: waf_xss_match_set" 4 sidebar_current: "docs-aws-resource-waf-xss-match-set" 5 description: |- 6 Provides a AWS WAF XssMatchSet resource. 7 --- 8 9 # aws\_waf\_xss\_match\_set 10 11 Provides a WAF XSS Match Set Resource 12 13 ## Example Usage 14 15 ``` 16 resource "aws_waf_xss_match_set" "xss_match_set" { 17 name = "xss_match_set" 18 xss_match_tuples { 19 text_transformation = "NONE" 20 field_to_match { 21 type = "URI" 22 } 23 } 24 25 xss_match_tuples { 26 text_transformation = "NONE" 27 field_to_match { 28 type = "QUERY_STRING" 29 } 30 } 31 } 32 ``` 33 34 ## Argument Reference 35 36 The following arguments are supported: 37 38 * `name` - (Required) The name or description of the SizeConstraintSet. 39 * `xss_match_tuples` - The parts of web requests that you want to inspect for cross-site scripting attacks. 40 41 ## Remarks 42 43 ## Attributes Reference 44 45 The following attributes are exported: 46 47 * `id` - The ID of the WAF XssMatchSet.