aws::waf-web-acl-regional

Creates a regional waf acl.

Example

aws::waf-web-acl-regional waf-web-acl-example
    name: "waf-web-acl-example"
    metric-name: "wafAclExample"
    default-action
        type: "ALLOW"
    end

    rule
        action
            type: "ALLOW"
        end
        priority: 1
        rule: $(aws::waf-rule-regional rule-example-waf)
    end

    rule
        action
            type: "ALLOW"
        end
        priority: 2
        rule: $(aws::waf-rate-rule-regional rate-rule-example-waf)
    end
end

Attributes

Attribute Description
name The name of the waf acl. (Required)
metric-name The metric name of the waf acl. Can only contain letters and numbers. (Required)
default-action subresource

The default action for the waf acl. (Required)

type
The action for a rule under a waf. (Required)
rule set subresource

A set of activated rules specifying the connection between waf acl and rule.

rule
The rule to be attached. (Required)
action subresource

The default action for the rule under this waf. (Required)

type
The action for a rule under a waf. (Required)
type
The type of rule being attached. Valid values are REGULAR, RATE_BASED or GROUP. (Required)
priority
The priority of the rule when attached to the acl. Valid values are between 1 to 10. (Required)
excluded-rules list
A list of rule id’s to be excluded from this activated rule.
load-balancers set A set of Application Load Balancer that will be associated with the waf acl.