github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/aws/r/wafregional_ipset.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: wafregional_ipset"
     4  sidebar_current: "docs-aws-resource-wafregional-ipset"
     5  description: |-
     6    Provides a AWS WAF Regional IPSet resource for use with ALB.
     7  ---
     8  
     9  # aws\_wafregional\_ipset
    10  
    11  Provides a WAF Regional IPSet Resource for use with Application Load Balancer.
    12  
    13  ## Example Usage
    14  
    15  ```
    16  resource "aws_wafregional_ipset" "ipset" {
    17    name = "tfIPSet"
    18    ip_set_descriptor {
    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_descriptor` - (Optional) The IP address type and IP address range (in CIDR notation) from which web requests originate.
    31  
    32  IPSetDescriptor(ip_set_descriptor) support following:
    33  
    34  * `type` - (Required) The string like IPV4 or IPV6.
    35  * `value` - (Required) The CIDR notation.
    36  
    37  
    38  ## Remarks
    39  
    40  ## Attributes Reference
    41  
    42  The following attributes are exported:
    43  
    44  * `id` - The ID of the WAF IPSet.