cloudformation-stack-drift-detector 0.1.2 → 0.1.4
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.
- package/.jsii +12 -5
- package/lib/index.js +1 -1
- package/package.json +14 -6
package/.jsii
CHANGED
|
@@ -8435,14 +8435,21 @@
|
|
|
8435
8435
|
}
|
|
8436
8436
|
}
|
|
8437
8437
|
},
|
|
8438
|
-
"description": "
|
|
8438
|
+
"description": "AWS CDK construct that runs CloudFormation stack drift detection on a daily schedule and publishes drifted stacks to Amazon SNS.",
|
|
8439
8439
|
"docs": {
|
|
8440
8440
|
"stability": "stable"
|
|
8441
8441
|
},
|
|
8442
8442
|
"homepage": "https://github.com/gammarers-aws-cdk-constructs/cloudformation-stack-drift-detector.git",
|
|
8443
|
-
"jsiiVersion": "6.0.
|
|
8443
|
+
"jsiiVersion": "6.0.12 (build 471f453)",
|
|
8444
8444
|
"keywords": [
|
|
8445
|
-
"
|
|
8445
|
+
"aws",
|
|
8446
|
+
"cdk",
|
|
8447
|
+
"cloudformation",
|
|
8448
|
+
"construct",
|
|
8449
|
+
"detector",
|
|
8450
|
+
"drift",
|
|
8451
|
+
"sns",
|
|
8452
|
+
"stack"
|
|
8446
8453
|
],
|
|
8447
8454
|
"license": "Apache-2.0",
|
|
8448
8455
|
"metadata": {
|
|
@@ -8689,6 +8696,6 @@
|
|
|
8689
8696
|
"symbolId": "src/index:TargetResource"
|
|
8690
8697
|
}
|
|
8691
8698
|
},
|
|
8692
|
-
"version": "0.1.
|
|
8693
|
-
"fingerprint": "
|
|
8699
|
+
"version": "0.1.4",
|
|
8700
|
+
"fingerprint": "Jqn/+VRW42kopD0Ht9dEiVpD114gOnmD3R6NdElONbc="
|
|
8694
8701
|
}
|
package/lib/index.js
CHANGED
|
@@ -50,7 +50,7 @@ const detector_function_1 = require("./funcs/detector-function");
|
|
|
50
50
|
* every stable stack in the account and region is inspected.
|
|
51
51
|
*/
|
|
52
52
|
class CloudformationStackDriftDetector extends constructs_1.Construct {
|
|
53
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "cloudformation-stack-drift-detector.CloudformationStackDriftDetector", version: "0.1.
|
|
53
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "cloudformation-stack-drift-detector.CloudformationStackDriftDetector", version: "0.1.4" };
|
|
54
54
|
/**
|
|
55
55
|
* SNS topic that receives drift notifications.
|
|
56
56
|
*/
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudformation-stack-drift-detector",
|
|
3
|
+
"description": "AWS CDK construct that runs CloudFormation stack drift detection on a daily schedule and publishes drifted stacks to Amazon SNS.",
|
|
3
4
|
"repository": {
|
|
4
5
|
"type": "git",
|
|
5
6
|
"url": "https://github.com/gammarers-aws-cdk-constructs/cloudformation-stack-drift-detector.git"
|
|
@@ -57,14 +58,14 @@
|
|
|
57
58
|
"eslint": "^9",
|
|
58
59
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
59
60
|
"eslint-plugin-import": "^2.32.0",
|
|
60
|
-
"jest": "^30.
|
|
61
|
+
"jest": "^30.5.0",
|
|
61
62
|
"jest-junit": "^17",
|
|
62
63
|
"jsii": "6.0.x",
|
|
63
|
-
"jsii-diff": "^1.
|
|
64
|
+
"jsii-diff": "^1.140.0",
|
|
64
65
|
"jsii-docgen": "^10.5.0",
|
|
65
|
-
"jsii-pacmak": "^1.
|
|
66
|
+
"jsii-pacmak": "^1.140.0",
|
|
66
67
|
"jsii-rosetta": "6.0.x",
|
|
67
|
-
"projen": "^0.103.
|
|
68
|
+
"projen": "^0.103.11",
|
|
68
69
|
"ts-jest": "^29.4.12",
|
|
69
70
|
"ts-node": "^10.9.2",
|
|
70
71
|
"typescript": "6.0.x"
|
|
@@ -74,7 +75,14 @@
|
|
|
74
75
|
"constructs": "^10.5.1"
|
|
75
76
|
},
|
|
76
77
|
"keywords": [
|
|
77
|
-
"
|
|
78
|
+
"aws",
|
|
79
|
+
"cdk",
|
|
80
|
+
"cloudformation",
|
|
81
|
+
"construct",
|
|
82
|
+
"detector",
|
|
83
|
+
"drift",
|
|
84
|
+
"sns",
|
|
85
|
+
"stack"
|
|
78
86
|
],
|
|
79
87
|
"engines": {
|
|
80
88
|
"node": ">= 20.0.0"
|
|
@@ -91,7 +99,7 @@
|
|
|
91
99
|
"publishConfig": {
|
|
92
100
|
"access": "public"
|
|
93
101
|
},
|
|
94
|
-
"version": "0.1.
|
|
102
|
+
"version": "0.1.4",
|
|
95
103
|
"jest": {
|
|
96
104
|
"coverageProvider": "v8",
|
|
97
105
|
"testMatch": [
|