This is an AWS CDK Construct for IP Restriction Rule on WAF V2
Project description
AWS WAF(V2) IP Restrict Rule
This is an AWS CDK Construct for IP Restrict Rule on WAF V2
Install
TypeScript
install by npm
npm install @gammarers/aws-waf-ip-restrict-rule
install by yarn
yarn add @gammarers/aws-waf-ip-restrict-rule
Python
pip install gammarers.aws-waf-ip-restrict-rule
Example
import { WAFIPRestrictRule } from '@gammarers/aws-waf-ip-restrict-rule';
const allowedIpSet = new wafv2.CfnIPSet(stack, 'AllowedIpSet', {
addresses: [
'203.0.113.0/24',
'198.51.100.0/24',
],
ipAddressVersion: 'IPV4',
scope: 'CLOUDFRONT',
name: 'AllowedIpSet',
});
const ipRestrictRule = new WAFIPRestrictRule({
allowIPSetArn: allowedIpSet.attrArn,
});
new wafv2.CfnWebACL(stack, 'WebACL', {
defaultAction: { allow: {} },
scope: 'CLOUDFRONT',
name: 'WebAclWithCustomRules',
visibilityConfig: {
cloudWatchMetricsEnabled: true,
metricName: 'WebAclMetric',
sampledRequestsEnabled: true,
},
rules: [
ipRestrictRule.allowRule({ priority: 1 }),
ipRestrictRule.blockRule({ priority: 2 }),
],
});
License
This project is licensed under the Apache-2.0 License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gammarers_aws_waf_ip_restrict_rule-2.1.39.tar.gz.
File metadata
- Download URL: gammarers_aws_waf_ip_restrict_rule-2.1.39.tar.gz
- Upload date:
- Size: 28.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca9f3f4a4f4c6ac617f5ea0624037858e738208cdcd9988bc0ea823258d1b198
|
|
| MD5 |
73acb2ce22e1350de9e724b12aa742ea
|
|
| BLAKE2b-256 |
3b6f3d2a4b07123d58508b069e5869a48cd566f7684e464868d88dd14ea372ce
|
File details
Details for the file gammarers_aws_waf_ip_restrict_rule-2.1.39-py3-none-any.whl.
File metadata
- Download URL: gammarers_aws_waf_ip_restrict_rule-2.1.39-py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f86d690694fbe95cc57a675b3d7a3be4dc6524a10c9e2a2664cd2d968dfdd37f
|
|
| MD5 |
d8494c217e713fde6274d96c2187b208
|
|
| BLAKE2b-256 |
929a5094dcc812b3ba452df28fbad75980aad76aff2060173d6fad2dfa3c2e41
|