cdk-cost-analyzer 0.1.3 → 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/.cdk-cost-analyzer-cache/metadata.json +2 -2
- package/.mergify.yml +16 -0
- package/README.md +3 -1
- package/dist/releasetag.txt +1 -1
- package/package.json +2 -1
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"entries": {
|
|
3
3
|
"AmazonS3:EU (Frankfurt):storageClass:General Purpose|volumeType:Standard": {
|
|
4
4
|
"price": 0.023,
|
|
5
|
-
"timestamp":
|
|
5
|
+
"timestamp": 1768913292446
|
|
6
6
|
},
|
|
7
7
|
"AmazonS3:invalid-region-123:storageClass:General Purpose|volumeType:Standard": {
|
|
8
8
|
"price": 0.023,
|
|
9
|
-
"timestamp":
|
|
9
|
+
"timestamp": 1768913292485
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
package/.mergify.yml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
|
|
2
|
+
|
|
3
|
+
queue_rules: []
|
|
4
|
+
pull_request_rules:
|
|
5
|
+
- name: Automatic merge on approval and successful build
|
|
6
|
+
conditions:
|
|
7
|
+
- "#approved-reviews-by>=1"
|
|
8
|
+
- -label~=(do-not-merge)
|
|
9
|
+
- status-success=build
|
|
10
|
+
- status-success=test
|
|
11
|
+
actions:
|
|
12
|
+
merge:
|
|
13
|
+
method: squash
|
|
14
|
+
delete_head_branch: {}
|
|
15
|
+
merge_queue:
|
|
16
|
+
max_parallel_checks: 1
|
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# CDK Cost Analyzer
|
|
2
2
|
|
|
3
|
-
[](https://github.com/buildinginthecloud/cdk-cost-analyzer/actions/workflows/test.yml)
|
|
4
|
+
[](https://github.com/buildinginthecloud/cdk-cost-analyzer/actions/workflows/build.yml)
|
|
5
|
+
[](https://github.com/buildinginthecloud/cdk-cost-analyzer/actions/workflows/release.yml)
|
|
4
6
|
|
|
5
7
|
A TypeScript package that analyzes AWS CDK infrastructure changes and provides cost impact summaries. Compare CloudFormation templates to understand the financial implications of your infrastructure changes before deployment.
|
|
6
8
|
|
package/dist/releasetag.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v0.1.
|
|
1
|
+
v0.1.4
|
package/package.json
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"lint": "npx projen lint",
|
|
22
22
|
"package": "npx projen package",
|
|
23
23
|
"post-compile": "npx projen post-compile",
|
|
24
|
+
"post-release": "npx projen post-release",
|
|
24
25
|
"post-upgrade": "npx projen post-upgrade",
|
|
25
26
|
"pre-compile": "npx projen pre-compile",
|
|
26
27
|
"prepare": "npx projen prepare",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"publishConfig": {
|
|
83
84
|
"access": "public"
|
|
84
85
|
},
|
|
85
|
-
"version": "0.1.
|
|
86
|
+
"version": "0.1.4",
|
|
86
87
|
"bugs": {
|
|
87
88
|
"url": "https://github.com/buildinginthecloud/cdk-cost-analyzer/issues"
|
|
88
89
|
},
|