Skip to content

Instantly share code, notes, and snippets.

View anaarezo's full-sized avatar
🫖
Tea?

Ana Arezo anaarezo

🫖
Tea?
View GitHub Profile
@anaarezo
anaarezo / waf.ts
Created June 12, 2024 13:21 — forked from statik/waf.ts
WAF with CDK examples
import * as cdk from "@aws-cdk/core";
import * as wafv2 from "@aws-cdk/aws-wafv2";
// This extends the base cdk stack properties to include a tag name input.
export interface StackProps extends cdk.StackProps {
tag: string;
applicationName?: string;
}
export class WAFStack extends cdk.Stack {