cdk-nag 2.35.92__tar.gz → 2.35.93__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cdk_nag-2.35.92/src/cdk_nag.egg-info → cdk_nag-2.35.93}/PKG-INFO +4 -2
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/README.md +3 -1
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/setup.py +2 -2
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag/__init__.py +3 -1
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag/_jsii/__init__.py +1 -1
- cdk_nag-2.35.93/src/cdk_nag/_jsii/cdk-nag@2.35.93.jsii.tgz +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93/src/cdk_nag.egg-info}/PKG-INFO +4 -2
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag.egg-info/SOURCES.txt +1 -1
- cdk_nag-2.35.92/src/cdk_nag/_jsii/cdk-nag@2.35.92.jsii.tgz +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/LICENSE +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/MANIFEST.in +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/NOTICE +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/pyproject.toml +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/setup.cfg +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag/py.typed +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag.egg-info/dependency_links.txt +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag.egg-info/requires.txt +0 -0
- {cdk_nag-2.35.92 → cdk_nag-2.35.93}/src/cdk_nag.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-nag
|
3
|
-
Version: 2.35.
|
3
|
+
Version: 2.35.93
|
4
4
|
Summary: Check CDK v2 applications for best practices using a combination on available rule packs.
|
5
5
|
Home-page: https://github.com/cdklabs/cdk-nag.git
|
6
6
|
Author: Arun Donti<donti@amazon.com>
|
@@ -75,8 +75,10 @@ import { AwsSolutionsChecks } from 'cdk-nag';
|
|
75
75
|
|
76
76
|
const app = new App();
|
77
77
|
new CdkTestStack(app, 'CdkNagDemo');
|
78
|
-
// Simple rule informational messages
|
78
|
+
// Simple rule informational messages using the AWS Solutions Rule pack
|
79
79
|
Aspects.of(app).add(new AwsSolutionsChecks());
|
80
|
+
// Multiple rule packs can be run against the same app
|
81
|
+
Aspects.of(app).add(new NIST80053R5Checks());
|
80
82
|
// Additional explanations on the purpose of triggered rules
|
81
83
|
// Aspects.of(stack).add(new AwsSolutionsChecks({ verbose: true }));
|
82
84
|
```
|
@@ -47,8 +47,10 @@ import { AwsSolutionsChecks } from 'cdk-nag';
|
|
47
47
|
|
48
48
|
const app = new App();
|
49
49
|
new CdkTestStack(app, 'CdkNagDemo');
|
50
|
-
// Simple rule informational messages
|
50
|
+
// Simple rule informational messages using the AWS Solutions Rule pack
|
51
51
|
Aspects.of(app).add(new AwsSolutionsChecks());
|
52
|
+
// Multiple rule packs can be run against the same app
|
53
|
+
Aspects.of(app).add(new NIST80053R5Checks());
|
52
54
|
// Additional explanations on the purpose of triggered rules
|
53
55
|
// Aspects.of(stack).add(new AwsSolutionsChecks({ verbose: true }));
|
54
56
|
```
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "cdk-nag",
|
8
|
-
"version": "2.35.
|
8
|
+
"version": "2.35.93",
|
9
9
|
"description": "Check CDK v2 applications for best practices using a combination on available rule packs.",
|
10
10
|
"license": "Apache-2.0",
|
11
11
|
"url": "https://github.com/cdklabs/cdk-nag.git",
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
26
26
|
],
|
27
27
|
"package_data": {
|
28
28
|
"cdk_nag._jsii": [
|
29
|
-
"cdk-nag@2.35.
|
29
|
+
"cdk-nag@2.35.93.jsii.tgz"
|
30
30
|
],
|
31
31
|
"cdk_nag": [
|
32
32
|
"py.typed"
|
@@ -48,8 +48,10 @@ import { AwsSolutionsChecks } from 'cdk-nag';
|
|
48
48
|
|
49
49
|
const app = new App();
|
50
50
|
new CdkTestStack(app, 'CdkNagDemo');
|
51
|
-
// Simple rule informational messages
|
51
|
+
// Simple rule informational messages using the AWS Solutions Rule pack
|
52
52
|
Aspects.of(app).add(new AwsSolutionsChecks());
|
53
|
+
// Multiple rule packs can be run against the same app
|
54
|
+
Aspects.of(app).add(new NIST80053R5Checks());
|
53
55
|
// Additional explanations on the purpose of triggered rules
|
54
56
|
// Aspects.of(stack).add(new AwsSolutionsChecks({ verbose: true }));
|
55
57
|
```
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-nag
|
3
|
-
Version: 2.35.
|
3
|
+
Version: 2.35.93
|
4
4
|
Summary: Check CDK v2 applications for best practices using a combination on available rule packs.
|
5
5
|
Home-page: https://github.com/cdklabs/cdk-nag.git
|
6
6
|
Author: Arun Donti<donti@amazon.com>
|
@@ -75,8 +75,10 @@ import { AwsSolutionsChecks } from 'cdk-nag';
|
|
75
75
|
|
76
76
|
const app = new App();
|
77
77
|
new CdkTestStack(app, 'CdkNagDemo');
|
78
|
-
// Simple rule informational messages
|
78
|
+
// Simple rule informational messages using the AWS Solutions Rule pack
|
79
79
|
Aspects.of(app).add(new AwsSolutionsChecks());
|
80
|
+
// Multiple rule packs can be run against the same app
|
81
|
+
Aspects.of(app).add(new NIST80053R5Checks());
|
80
82
|
// Additional explanations on the purpose of triggered rules
|
81
83
|
// Aspects.of(stack).add(new AwsSolutionsChecks({ verbose: true }));
|
82
84
|
```
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|