github.com/minamijoyo/terraform@v0.7.8-0.20161029001309-18b3736ba44b/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  ## Example Usage
    10  
    11  ```
    12  resource "aws_waf_ipset" "ipset" {
    13    name = "tfIPSet"
    14    ip_set_descriptors {
    15      type = "IPV4"
    16      value = "192.0.7.0/24"
    17    }
    18  }
    19  ```
    20  
    21  ## Argument Reference
    22  
    23  The following arguments are supported:
    24  
    25  * `name` - (Required) The name or description of the IPSet.
    26  * `ip_set_descriptors` - (Required) The IP address type and IP address range (in CIDR notation) from which web requests originate. 
    27  
    28  ## Remarks
    29  
    30  ## Attributes Reference
    31  
    32  The following attributes are exported:
    33  
    34  * `id` - The ID of the WAF IPSet.