CFN Lint
Open Source tool (CFN Lint)[https://github.com/aws-cloudformation/cfn-lint ]. CFN Lint 是一款基于 Python 的 CLI,用于扫描 CloudFormation 模板。
CFN Lint 配置了各种预设检查和测试。
安装CFN Lint
如果是macOS系统可以使用以下命令安装:
检查是否可以在终端上运行 cfn-lint 的 cli。
扫描模板
CFN Lint 可与 JSON 和 YAML CloudFormation 模板配合使用,包括检查有效值、资源属性和最佳实践。 CFN Lint 还允许用户定义规则。
CFN Lint 主要用于检查模板结构,并没有很多用于安全扫描的高级规则。
假设创建YAML文件名为cfn_link_example_template.yaml,内容如下:
创建检查规则custom_rule.txt,内容如下:
命令行工具执行时与文件在同一个路径下:
返回以下提示信息:
W9001 This is an expensive instance type, don't use it
cfn_link_example_template.yaml:6:25
参考资料
预置的规则:https://github.com/aws-cloudformation/cfn-lint/blob/main/docs/rules.md
最后更新于