Contains a list of IP addresses. This can be either IPV4 or IPV6. The list will be mutually
Creates an IPV4 based WAFv2 IP SET with REGIONAL scope.
resource "awscc_wafv2_ip_set" "example" {
name = "example"
description = "Example IP set"
scope = "REGIONAL"
ip_address_version = "IPV4"
addresses = ["1.2.3.4/32", "5.6.7.8/32"]
tags = [
{
key = "ModifiedBy"
value = "AWSCC"
}
]
}
addresses
(List of String) List of IPAddresses.ip_address_version
(String) Type of addresses in the IPSet, use IPV4 for IPV4 IP addresses, IPV6 for IPV6 address.scope
(String) Use CLOUDFRONT for CloudFront IPSet, use REGIONAL for Application Load Balancer and API Gateway.description
(String) Description of the entity.name
(String) Name of the IPSet.tags
(Attributes List) (see below for nested schema)arn
(String) ARN of the WAF entity.id
(String) Uniquely identifies the resource.ip_set_id
(String) Id of the IPSettags
Optional:
key
(String)value
(String)Import is supported using the following syntax:
$ terraform import awscc_wafv2_ip_set.example <resource ID>