gpt4 book ai didi

amazon-web-services - AWS : Attach WAF to api gateway using cloudformation template

转载 作者:行者123 更新时间:2023-12-04 02:46:13 25 4
gpt4 key购买 nike

我已在我的 AWS 账户中创建了 WAF,我想将其与我的 API 网关休息端点集成。

我发现下面的命令将 WAF 与 API 网关休息端点集成,但我必须使用 Cloudformation 模板执行同样的操作。

aws waf-regional associate-web-acl \
--web-acl-id 'aabc123a-fb4f-4fc6-becb-2b00831cadcf' \
--resource-arn 'arn:aws:apigateway:{region}::/restapis/4wk1k4onj3/stages/prod'

来自AWS documentation我也无法弄清楚如何将 WAF 与 API 网关端点连接。

以下是 WAF 配置在 AWS UI 中的外观: enter image description here

最佳答案

以下是将 WAF 与 AWS 中任何 WAF 支持的资源集成的方法: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html

"MyWebACLAssociation": {
"Type": "AWS::WAFRegional::WebACLAssociation",
"Properties": {
"ResourceArn": { "Ref": "MyLoadBalancer" },
"WebACLId": { "Ref": "MyWebACL" }
}
}

编辑:较新的 WAFv2 的文档:https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webaclassociation.html

关于amazon-web-services - AWS : Attach WAF to api gateway using cloudformation template,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57197145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com