Hey there, are there any plans to support AWS WAF?...
# sst
m
Hey there, are there any plans to support AWS WAF? I'd like to put it in front of our Apollo API
a
Is that supported by CDK?
a
Then you can use it, you don’t need sst.
f
@Adrián Mouly is right, you can use the CDK construct directly, so something like:
Copy code
import * as waf from "@aws-cdk/aws-waf";

new waf.CfnWebACL(this, "WebACL", {...});
@Michael Orcutt It will be cumbersome as there isn’t a higher level construct that wraps around
CfnWebACL
,
CfnRule
, etc.
Is that what you r looking for? A SST construct that wraps around all these?