github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/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  
    19    ip_set_descriptors {
    20      type  = "IPV4"
    21      value = "192.0.7.0/24"
    22    }
    23  }
    24  ```
    25  
    26  ## Argument Reference
    27  
    28  The following arguments are supported:
    29  
    30  * `name` - (Required) The name or description of the IPSet.
    31  * `ip_set_descriptors` - (Required) The IP address type and IP address range (in CIDR notation) from which web requests originate.
    32  
    33  ## Remarks
    34  
    35  ## Attributes Reference
    36  
    37  The following attributes are exported:
    38  
    39  * `id` - The ID of the WAF IPSet.