aws_wafregional_geo_match_set
Provides a WAF Regional Geo Match Set Resource
Example Usage
resource "aws_wafregional_geo_match_set" "geo_match_set" {
name = "geo_match_set"
geo_match_constraint {
type = "Country"
value = "US"
}
geo_match_constraint {
type = "Country"
value = "CA"
}
}
Argument Reference
The following arguments are supported:
-
name
- (Required) The name or description of the Geo Match Set. -
geo_match_constraint
- (Optional) The Geo Match Constraint objects which contain the country that you want AWS WAF to search for.
Nested Blocks
geo_match_constraint
Arguments
-
type
- (Required) The type of geographical area you want AWS WAF to search for. Currently Country is the only valid value. -
value
- (Required) The country that you want AWS WAF to search for. This is the two-letter country code, e.g.US
,CA
,RU
,CN
, etc. See docs for all supported values.
Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id
- The ID of the WAF Regional Geo Match Set.
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/wafregional_geo_match_set.html