@intentius/chant-lexicon-aws 0.0.2 → 0.0.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/README.md +1 -1
- package/dist/integrity.json +21 -0
- package/dist/manifest.json +66 -0
- package/dist/meta.json +114627 -0
- package/dist/rules/cf-refs.ts +91 -0
- package/dist/rules/cor020.ts +72 -0
- package/dist/rules/ext001.ts +222 -0
- package/dist/rules/hardcoded-region.ts +43 -0
- package/dist/rules/iam-wildcard.ts +66 -0
- package/dist/rules/s3-encryption.ts +69 -0
- package/dist/rules/waw010.ts +49 -0
- package/dist/rules/waw011.ts +49 -0
- package/dist/rules/waw013.ts +45 -0
- package/dist/rules/waw014.ts +50 -0
- package/dist/rules/waw015.ts +100 -0
- package/dist/skills/aws-cloudformation.md +41 -0
- package/dist/types/index.d.ts +160826 -0
- package/package.json +4 -2
- package/src/codegen/docs.ts +1 -1
- package/src/generated/index.d.ts +97 -24
- package/src/generated/index.ts +2 -1
- package/src/generated/lexicon-aws.json +73 -9
- package/src/package-cli.ts +47 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @intentius/chant-lexicon-aws
|
|
2
2
|
|
|
3
|
-
> Part of the [chant](../../README.md) monorepo.
|
|
3
|
+
> Part of the [chant](../../README.md) monorepo. Published as [`@intentius/chant-lexicon-aws`](https://www.npmjs.com/package/@intentius/chant-lexicon-aws) on npm.
|
|
4
4
|
|
|
5
5
|
AWS CloudFormation lexicon for chant — declare infrastructure as flat, typed TypeScript that serializes to CloudFormation JSON templates.
|
|
6
6
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"algorithm": "xxhash64",
|
|
3
|
+
"artifacts": {
|
|
4
|
+
"manifest.json": "6839655ca899f6de",
|
|
5
|
+
"meta.json": "f4212058002398e3",
|
|
6
|
+
"types/index.d.ts": "3e0241e94cd7c744",
|
|
7
|
+
"rules/hardcoded-region.ts": "c65b9015c7c361c",
|
|
8
|
+
"rules/iam-wildcard.ts": "bec23d388862210a",
|
|
9
|
+
"rules/s3-encryption.ts": "33a8de06c8bf8d62",
|
|
10
|
+
"rules/waw014.ts": "6022eb08a789dd7b",
|
|
11
|
+
"rules/cor020.ts": "f2c93cbb2052a63a",
|
|
12
|
+
"rules/waw010.ts": "44c6b02d5750ec77",
|
|
13
|
+
"rules/ext001.ts": "39739637b5254007",
|
|
14
|
+
"rules/cf-refs.ts": "2241531899151bca",
|
|
15
|
+
"rules/waw015.ts": "73e577dbe1af3918",
|
|
16
|
+
"rules/waw013.ts": "b680dc528776a5e1",
|
|
17
|
+
"rules/waw011.ts": "d609d2e87d0d7440",
|
|
18
|
+
"skills/aws-cloudformation.md": "433b8205e2a7843b"
|
|
19
|
+
},
|
|
20
|
+
"composite": "dc7954576a75addb"
|
|
21
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aws",
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"chantVersion": ">=0.1.0",
|
|
5
|
+
"namespace": "AWS",
|
|
6
|
+
"intrinsics": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Sub",
|
|
9
|
+
"description": "Fn::Sub template string interpolation",
|
|
10
|
+
"outputKey": "Fn::Sub",
|
|
11
|
+
"isTag": true
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "Ref",
|
|
15
|
+
"description": "Reference a parameter or resource",
|
|
16
|
+
"outputKey": "Ref",
|
|
17
|
+
"isTag": false
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "GetAtt",
|
|
21
|
+
"description": "Fn::GetAtt — get resource attribute",
|
|
22
|
+
"outputKey": "Fn::GetAtt",
|
|
23
|
+
"isTag": false
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "If",
|
|
27
|
+
"description": "Fn::If — conditional value",
|
|
28
|
+
"outputKey": "Fn::If",
|
|
29
|
+
"isTag": false
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Join",
|
|
33
|
+
"description": "Fn::Join — join values with delimiter",
|
|
34
|
+
"outputKey": "Fn::Join",
|
|
35
|
+
"isTag": false
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Select",
|
|
39
|
+
"description": "Fn::Select — select value by index",
|
|
40
|
+
"outputKey": "Fn::Select",
|
|
41
|
+
"isTag": false
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Split",
|
|
45
|
+
"description": "Fn::Split — split string by delimiter",
|
|
46
|
+
"outputKey": "Fn::Split",
|
|
47
|
+
"isTag": false
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Base64",
|
|
51
|
+
"description": "Fn::Base64 — encode to Base64",
|
|
52
|
+
"outputKey": "Fn::Base64",
|
|
53
|
+
"isTag": false
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"pseudoParameters": {
|
|
57
|
+
"StackName": "AWS::StackName",
|
|
58
|
+
"Region": "AWS::Region",
|
|
59
|
+
"AccountId": "AWS::AccountId",
|
|
60
|
+
"StackId": "AWS::StackId",
|
|
61
|
+
"URLSuffix": "AWS::URLSuffix",
|
|
62
|
+
"NoValue": "AWS::NoValue",
|
|
63
|
+
"NotificationARNs": "AWS::NotificationARNs",
|
|
64
|
+
"Partition": "AWS::Partition"
|
|
65
|
+
}
|
|
66
|
+
}
|