terraform/website/source/docs/providers/aws/r/wafregional_ipset.html.mark...

979 B

layout page_title sidebar_current description
aws AWS: wafregional_ipset docs-aws-resource-wafregional-ipset Provides a AWS WAF Regional IPSet resource for use with ALB.

aws_wafregional_ipset

Provides a WAF Regional IPSet Resource for use with Application Load Balancer.

Example Usage

resource "aws_wafregional_ipset" "ipset" {
  name = "tfIPSet"
  ip_set_descriptor {
    type = "IPV4"
    value = "192.0.7.0/24"
  }
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name or description of the IPSet.
  • ip_set_descriptor - (Optional) The IP address type and IP address range (in CIDR notation) from which web requests originate.

IPSetDescriptor(ip_set_descriptor) support following:

  • type - (Required) The string like IPV4 or IPV6.
  • value - (Required) The CIDR notation.

Remarks

Attributes Reference

The following attributes are exported:

  • id - The ID of the WAF IPSet.