You must be logged in to view saved presets
Creates an AWS WAFv2 Regex Pattern Set with multiple regular expressions and tags.
resource "aws_wafv2_regex_pattern_set" "example" {
description = "Example regex pattern set"
name = "example"
regular_expression {
regex_string = "one"
}
regular_expression {
regex_string = "two"
}
scope = "REGIONAL"
tags = {
Tag1 = "Value1"
Tag2 = "Value2"
}
}