github.com/emc-cmd/terraform@v0.7.8-0.20161101145618-f16309630e7c/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 ## Example Usage 10 11 ``` 12 resource "aws_waf_xss_match_set" "xss_match_set" { 13 name = "xss_match_set" 14 xss_match_tuples { 15 text_transformation = "NONE" 16 field_to_match { 17 type = "URI" 18 } 19 } 20 21 xss_match_tuples { 22 text_transformation = "NONE" 23 field_to_match { 24 type = "QUERY_STRING" 25 } 26 } 27 } 28 ``` 29 30 ## Argument Reference 31 32 The following arguments are supported: 33 34 * `name` - (Required) The name or description of the SizeConstraintSet. 35 * `xss_match_tuples` - The parts of web requests that you want to inspect for cross-site scripting attacks. 36 37 ## Remarks 38 39 ## Attributes Reference 40 41 The following attributes are exported: 42 43 * `id` - The ID of the WAF XssMatchSet.