0
0
llucycodes42
The code defines a resource called "aws_waf_byte_match_set". This resource has the following definition:
"name": "aws_waf_byte_match_set", "type": " AWS::WAF::ByteMatchSet ", "properties": { "match_type": "byte", "matches": { "a": 3, "b": 4, "c": 5 } } }
The aws_waf_byte_match_set resource is used to store a collection of byte patterns that match values in a set. The match_type parameter specifies that the patterns are to be matched in bytes. The matches parameter specifies the byte values that should match each pattern.
Shortcut: tf_aws_waf_byte_match_set
resource "aws_waf_byte_match_set" "${MyAWSResource}" {
}