Retrieves the summary of a WAFv2 Regex Pattern Set.
data "aws_wafv2_regex_pattern_set" "example" {
name = "some-regex-pattern-set"
scope = "REGIONAL"
}
This data source supports the following arguments:
name
- (Required) Name of the WAFv2 Regex Pattern Set.scope
- (Required) Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT
or REGIONAL
. To work with CloudFront, you must also specify the region us-east-1
(N. Virginia) on the AWS provider.This data source exports the following attributes in addition to the arguments above:
arn
- ARN of the entity.description
- Description of the set that helps with identification.id
- Unique identifier for the set.regular_expression
- One or more blocks of regular expression patterns that AWS WAF is searching for. See Regular Expression below for details.Each regular_expression
supports the following argument:
regex_string
- (Required) String representing the regular expression, see the AWS WAF documentation for more information.