github.com/ves/terraform@v0.8.0-beta2/website/source/docs/providers/aws/r/waf_ipset.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: waf_ipset"
     4  sidebar_current: "docs-aws-resource-waf-ipset"
     5  description: |-
     6    Provides a AWS WAF IPSet resource.
     7  ---
     8  
     9  # aws\_waf\_ipset
    10  
    11  Provides a WAF IPSet Resource
    12  
    13  ## Example Usage
    14  
    15  ```
    16  resource "aws_waf_ipset" "ipset" {
    17    name = "tfIPSet"
    18    ip_set_descriptors {
    19      type = "IPV4"
    20      value = "192.0.7.0/24"
    21    }
    22  }
    23  ```
    24  
    25  ## Argument Reference
    26  
    27  The following arguments are supported:
    28  
    29  * `name` - (Required) The name or description of the IPSet.
    30  * `ip_set_descriptors` - (Required) The IP address type and IP address range (in CIDR notation) from which web requests originate. 
    31  
    32  ## Remarks
    33  
    34  ## Attributes Reference
    35  
    36  The following attributes are exported:
    37  
    38  * `id` - The ID of the WAF IPSet.