AWS Fundamentals Logo
AWS Fundamentals
AWS::WAFv2::IPSet

WAFv2 IPSet

Contains a list of IP addresses. This can be either IPV4 or IPV6. The list will be mutually

Properties

6 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
Addresses
Array<string>
Required
IPAddressVersion
string
Required
Scope
string
RequiredCreate-only
Description
string
Name
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-
Idstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::WAFv2::IPSet

Resources:
  MyResource:
    Type: AWS::WAFv2::IPSet
    Properties:
      Addresses: []
      IPAddressVersion: "value"
      Scope: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

wafv2:CreateIPSetwafv2:GetIPSetwafv2:ListTagsForResourcewafv2:TagResourcewafv2:UntagResource

delete

wafv2:DeleteIPSetwafv2:GetIPSet

read

wafv2:GetIPSetwafv2:ListTagsForResource

update

wafv2:UpdateIPSetwafv2:GetIPSetwafv2:ListTagsForResourcewafv2:TagResourcewafv2:UntagResource

list

wafv2:listIPSets

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceWAFv2
Properties8
Required3
TaggingSupported
Primary IDName

Supported Operations

CreateDeleteReadUpdateList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NameScope

External Links