Skip to content

Releases: stelligent/cfn_nag

v0.5.23

09 Mar 13:25
Compare
Choose a tag to compare

Changes

  • No changes

v0.5.22

06 Mar 18:19
9935854
Compare
Choose a tag to compare

🚀 Features

0.0.0 - 0.5.21 Changes

Colorized Text Output

30 May 17:03
0003ffc
Compare
Choose a tag to compare

When using the default output-type of text, warnings will now show as yellow and failures as red.

Line Numbers Support

29 May 20:38
7d707c6
Compare
Choose a tag to compare

This change uses the new line numbers support of cfn-model.

$ cfn_nag ../cfn-model/test.json
{
  "failure_count": 1,
  "violations": [
    {
      "id": "F14",
      "type": "FAIL",
      "message": "S3 Bucket should not have a public read-write acl",
      "logical_resource_ids": [
        "S3Bucket"
      ],
      "line_numbers": [
        5
      ]
    }
  ]
}