@intentius/chant-lexicon-aws 0.18.9 → 0.18.11
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/dist/generated/index.d.ts +1 -0
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +11 -1
- package/dist/types/index.d.ts +8 -0
- package/package.json +2 -2
- package/src/generated/index.d.ts +8 -0
- package/src/generated/index.ts +1 -0
- package/src/generated/lexicon-aws.json +11 -1
package/dist/integrity.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"algorithm": "sha256",
|
|
3
3
|
"artifacts": {
|
|
4
|
-
"manifest.json": "
|
|
5
|
-
"meta.json": "
|
|
6
|
-
"types/index.d.ts": "
|
|
4
|
+
"manifest.json": "1335fce615861ea7d4919682477ec4df548f57bc56f01d7b1e073750deccb060",
|
|
5
|
+
"meta.json": "8c8333c2cc61ac2525f3418ea240c69d263e545e5947c15b984549d5207198c2",
|
|
6
|
+
"types/index.d.ts": "023279953ee34fb6851e2b47ff1a8d816fa8fc68ac733fca50e83594b8147e20",
|
|
7
7
|
"rules/hardcoded-region.ts": "5a0eaf7ab391231fe6cd51426ece29539cb4b36f31c8dd060956638fed55722a",
|
|
8
8
|
"rules/iam-wildcard.ts": "135d7217d278fef50939e605c5da32603ba35674b8c4b5c4d66a06c77903e945",
|
|
9
9
|
"rules/s3-encryption.ts": "c4f9f8aa8dc382ed98c7b04e820a600590cc75335a8db2e087cbfbfe4003d09e",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"skills/chant-aws.md": "4d65eb160e001f2af42eb7c622a5b498c2fd1f5afbd6c8155615c010fb265c63",
|
|
41
41
|
"skills/chant-aws-eks.md": "8789255709ff004ad0a875fd5999edcdc66fc6e33d710db058d9f42703bcfdfe"
|
|
42
42
|
},
|
|
43
|
-
"composite": "
|
|
43
|
+
"composite": "25f6453a8ea15dc88499dc620ca2ef6f76337bcab6c1f4db19a4a48d616872fd"
|
|
44
44
|
}
|
package/dist/manifest.json
CHANGED
package/dist/meta.json
CHANGED
|
@@ -54845,7 +54845,12 @@
|
|
|
54845
54845
|
],
|
|
54846
54846
|
"primaryIdentifier": [
|
|
54847
54847
|
"RuleArn"
|
|
54848
|
-
]
|
|
54848
|
+
],
|
|
54849
|
+
"tagging": {
|
|
54850
|
+
"taggable": true,
|
|
54851
|
+
"tagOnCreate": true,
|
|
54852
|
+
"tagUpdatable": true
|
|
54853
|
+
}
|
|
54849
54854
|
},
|
|
54850
54855
|
"ListenerRule_Action": {
|
|
54851
54856
|
"resourceType": "AWS::ElasticLoadBalancingV2::ListenerRule.Action",
|
|
@@ -54932,6 +54937,11 @@
|
|
|
54932
54937
|
"kind": "property",
|
|
54933
54938
|
"lexicon": "aws"
|
|
54934
54939
|
},
|
|
54940
|
+
"ListenerRule_Tag": {
|
|
54941
|
+
"resourceType": "AWS::ElasticLoadBalancingV2::ListenerRule.Tag",
|
|
54942
|
+
"kind": "property",
|
|
54943
|
+
"lexicon": "aws"
|
|
54944
|
+
},
|
|
54935
54945
|
"ListenerRule_TargetGroupStickinessConfig": {
|
|
54936
54946
|
"resourceType": "AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupStickinessConfig",
|
|
54937
54947
|
"kind": "property",
|
package/dist/types/index.d.ts
CHANGED
|
@@ -20079,6 +20079,7 @@ export declare class ListenerRule {
|
|
|
20079
20079
|
/** The Amazon Resource Name (ARN) of the listener. */
|
|
20080
20080
|
ListenerArn?: string;
|
|
20081
20081
|
RuleArn?: string;
|
|
20082
|
+
Tags?: ListenerRule_Tag[];
|
|
20082
20083
|
Transforms?: ListenerRule_Transform[];
|
|
20083
20084
|
}, attributes?: CFResourceAttributes);
|
|
20084
20085
|
readonly IsDefault: boolean;
|
|
@@ -85153,6 +85154,13 @@ export declare class ListenerRule_SourceIpConfig {
|
|
|
85153
85154
|
});
|
|
85154
85155
|
}
|
|
85155
85156
|
|
|
85157
|
+
export declare class ListenerRule_Tag {
|
|
85158
|
+
constructor(props: {
|
|
85159
|
+
Key: string;
|
|
85160
|
+
Value: string;
|
|
85161
|
+
});
|
|
85162
|
+
}
|
|
85163
|
+
|
|
85156
85164
|
export declare class ListenerRule_TargetGroupStickinessConfig {
|
|
85157
85165
|
constructor(props: {
|
|
85158
85166
|
/** [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.11",
|
|
4
4
|
"description": "AWS CloudFormation lexicon for chant — declarative IaC in TypeScript",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://intentius.io/chant",
|
|
@@ -80,6 +80,6 @@
|
|
|
80
80
|
"typescript": "^5.9.3"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@intentius/chant": "^0.18.
|
|
83
|
+
"@intentius/chant": "^0.18.11"
|
|
84
84
|
}
|
|
85
85
|
}
|
package/src/generated/index.d.ts
CHANGED
|
@@ -20079,6 +20079,7 @@ export declare class ListenerRule {
|
|
|
20079
20079
|
/** The Amazon Resource Name (ARN) of the listener. */
|
|
20080
20080
|
ListenerArn?: string;
|
|
20081
20081
|
RuleArn?: string;
|
|
20082
|
+
Tags?: ListenerRule_Tag[];
|
|
20082
20083
|
Transforms?: ListenerRule_Transform[];
|
|
20083
20084
|
}, attributes?: CFResourceAttributes);
|
|
20084
20085
|
readonly IsDefault: boolean;
|
|
@@ -85153,6 +85154,13 @@ export declare class ListenerRule_SourceIpConfig {
|
|
|
85153
85154
|
});
|
|
85154
85155
|
}
|
|
85155
85156
|
|
|
85157
|
+
export declare class ListenerRule_Tag {
|
|
85158
|
+
constructor(props: {
|
|
85159
|
+
Key: string;
|
|
85160
|
+
Value: string;
|
|
85161
|
+
});
|
|
85162
|
+
}
|
|
85163
|
+
|
|
85156
85164
|
export declare class ListenerRule_TargetGroupStickinessConfig {
|
|
85157
85165
|
constructor(props: {
|
|
85158
85166
|
/** [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness. */
|
package/src/generated/index.ts
CHANGED
|
@@ -6449,6 +6449,7 @@ export const ListenerRule_RedirectConfig = createProperty("AWS::ElasticLoadBalan
|
|
|
6449
6449
|
export const ListenerRule_RewriteConfigObject = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.RewriteConfigObject", "aws");
|
|
6450
6450
|
export const ListenerRule_RuleCondition = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.RuleCondition", "aws");
|
|
6451
6451
|
export const ListenerRule_SourceIpConfig = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.SourceIpConfig", "aws");
|
|
6452
|
+
export const ListenerRule_Tag = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.Tag", "aws");
|
|
6452
6453
|
export const ListenerRule_TargetGroupStickinessConfig = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupStickinessConfig", "aws");
|
|
6453
6454
|
export const ListenerRule_TargetGroupTuple = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupTuple", "aws");
|
|
6454
6455
|
export const ListenerRule_Transform = createProperty("AWS::ElasticLoadBalancingV2::ListenerRule.Transform", "aws");
|
|
@@ -54845,7 +54845,12 @@
|
|
|
54845
54845
|
],
|
|
54846
54846
|
"primaryIdentifier": [
|
|
54847
54847
|
"RuleArn"
|
|
54848
|
-
]
|
|
54848
|
+
],
|
|
54849
|
+
"tagging": {
|
|
54850
|
+
"taggable": true,
|
|
54851
|
+
"tagOnCreate": true,
|
|
54852
|
+
"tagUpdatable": true
|
|
54853
|
+
}
|
|
54849
54854
|
},
|
|
54850
54855
|
"ListenerRule_Action": {
|
|
54851
54856
|
"resourceType": "AWS::ElasticLoadBalancingV2::ListenerRule.Action",
|
|
@@ -54932,6 +54937,11 @@
|
|
|
54932
54937
|
"kind": "property",
|
|
54933
54938
|
"lexicon": "aws"
|
|
54934
54939
|
},
|
|
54940
|
+
"ListenerRule_Tag": {
|
|
54941
|
+
"resourceType": "AWS::ElasticLoadBalancingV2::ListenerRule.Tag",
|
|
54942
|
+
"kind": "property",
|
|
54943
|
+
"lexicon": "aws"
|
|
54944
|
+
},
|
|
54935
54945
|
"ListenerRule_TargetGroupStickinessConfig": {
|
|
54936
54946
|
"resourceType": "AWS::ElasticLoadBalancingV2::ListenerRule.TargetGroupStickinessConfig",
|
|
54937
54947
|
"kind": "property",
|