aws_waf_geo_match_set
Provides a WAF Geo Match Set Resource
Example Usage
resource "aws_waf_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 GeoMatchSet. -
geo_match_constraint
- (Optional) The GeoMatchConstraint 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.
Remarks
Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id
- The ID of the WAF GeoMatchSet.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/waf_geo_match_set.html