Provides a WAF Regional IPSet Resource for use with Application Load Balancer.
resource "aws_wafregional_ipset" "ipset" {
  name = "tfIPSet"
  ip_set_descriptor {
    type = "IPV4"
    value = "192.0.7.0/24"
  }
  ip_set_descriptor {
    type  = "IPV4"
    value = "10.16.16.0/16"
  }
}
The following arguments are supported:
name - (Required) The name or description of the IPSet. ip_set_descriptor - (Optional) One or more pairs specifying the IP address type (IPV4 or IPV6) and the IP address range (in CIDR notation) from which web requests originate. ip_set_descriptor In addition to all arguments above, the following attributes are exported:
    © 2018 HashiCorpLicensed under the MPL 2.0 License.
    https://www.terraform.io/docs/providers/aws/r/wafregional_ipset.html