@intentius/chant-lexicon-aws 0.24.0 → 0.25.0

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "a20c29c522914a62a7823b23fd2b9d129807ce54057e6e7f8a22c2edac06bec7",
5
- "meta.json": "ef04b67841e39eed4550d4ec0527ebb2a0a367dc7628728522168f11b67a7a9f",
6
- "types/index.d.ts": "2a5fb678eae51c9ce44c59696e3e708b5d7dcbc91b24da7be199f010a9a63361",
4
+ "manifest.json": "a5162b7f8895bcc9d50771f01a6b1e8f67260f63fa06f3dbaba9adad1e7895f4",
5
+ "meta.json": "9a1964a45889497f8ce361803a71816f3be5246566af294db93e45cbf1310d10",
6
+ "types/index.d.ts": "55a5012a192919ba9c60dae240d042d08bab8aa9039d91abb0c76c950a71187b",
7
7
  "rules/hardcoded-region.ts": "5a0eaf7ab391231fe6cd51426ece29539cb4b36f31c8dd060956638fed55722a",
8
8
  "rules/iam-wildcard.ts": "135d7217d278fef50939e605c5da32603ba35674b8c4b5c4d66a06c77903e945",
9
9
  "rules/s3-encryption.ts": "c4f9f8aa8dc382ed98c7b04e820a600590cc75335a8db2e087cbfbfe4003d09e",
@@ -59,5 +59,5 @@
59
59
  "skills/chant-aws-eks.md": "8789255709ff004ad0a875fd5999edcdc66fc6e33d710db058d9f42703bcfdfe",
60
60
  "skills/chant-aws-carve-terraform.md": "f4c6fe1c702250665f90d82b3bdaba5ea50ae75e380a8ae321dad6eb1c39683e"
61
61
  },
62
- "composite": "1bf3277ce31ee1a020f29800d3477f7f96d041904b8377a7e5954492d45dc4d1"
62
+ "composite": "5d2dbd2699243f1c238ed43376b2c77cf1e38e539388f6a111b361bebc372a4e"
63
63
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "AWS",
6
6
  "intrinsics": [
package/dist/meta.json CHANGED
@@ -1768,7 +1768,21 @@
1768
1768
  "kind": "resource",
1769
1769
  "lexicon": "aws",
1770
1770
  "attrs": {
1771
- "Id": "Id"
1771
+ "CertificateArn": "CertificateArn"
1772
+ },
1773
+ "propertyConstraints": {
1774
+ "CertificateTransparencyLoggingPreference": {
1775
+ "enum": [
1776
+ "ENABLED",
1777
+ "DISABLED"
1778
+ ]
1779
+ },
1780
+ "CertificateExport": {
1781
+ "enum": [
1782
+ "ENABLED",
1783
+ "DISABLED"
1784
+ ]
1785
+ }
1772
1786
  },
1773
1787
  "createOnly": [
1774
1788
  "SubjectAlternativeNames",
@@ -1776,11 +1790,21 @@
1776
1790
  "ValidationMethod",
1777
1791
  "KeyAlgorithm",
1778
1792
  "DomainName",
1779
- "CertificateAuthorityArn"
1793
+ "CertificateAuthorityArn",
1794
+ "CertificateExport"
1795
+ ],
1796
+ "writeOnly": [
1797
+ "DomainValidationOptions/*/HostedZoneId",
1798
+ "ValidationMethod"
1780
1799
  ],
1781
1800
  "primaryIdentifier": [
1782
- "Id"
1783
- ]
1801
+ "CertificateArn"
1802
+ ],
1803
+ "tagging": {
1804
+ "taggable": true,
1805
+ "tagOnCreate": true,
1806
+ "tagUpdatable": true
1807
+ }
1784
1808
  },
1785
1809
  "AcmCertificate_DomainValidationOption": {
1786
1810
  "resourceType": "AWS::CertificateManager::Certificate.DomainValidationOption",
@@ -73461,7 +73485,8 @@
73461
73485
  "Tags",
73462
73486
  "Strategy",
73463
73487
  "SpreadLevel",
73464
- "PartitionCount"
73488
+ "PartitionCount",
73489
+ "ParentGroupId"
73465
73490
  ],
73466
73491
  "primaryIdentifier": [
73467
73492
  "GroupName"
@@ -314,18 +314,28 @@ export declare class AcmAccount {
314
314
 
315
315
  export declare class AcmCertificate {
316
316
  constructor(props: {
317
+ /** The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate */
317
318
  DomainName: string;
319
+ /** The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */
320
+ CertificateArn?: string;
321
+ /** The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */
318
322
  CertificateAuthorityArn?: string;
319
- CertificateExport?: string;
320
- CertificateTransparencyLoggingPreference?: string;
323
+ /** Specifies whether the certificate can be exported. ENABLED allows the certificate to be exported, DISABLED prevents export. */
324
+ CertificateExport?: "DISABLED" | "ENABLED";
325
+ /** You can opt out of certificate transparency logging by specifying the DISABLED option. Opt in by specifying ENABLED. */
326
+ CertificateTransparencyLoggingPreference?: "DISABLED" | "ENABLED";
327
+ /** Domain information that domain name registrars use to verify your identity. */
321
328
  DomainValidationOptions?: AcmCertificate_DomainValidationOption[];
322
- Id?: string;
329
+ /** Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. */
323
330
  KeyAlgorithm?: string;
331
+ /** Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. */
324
332
  SubjectAlternativeNames?: string[];
333
+ /** Key-value pairs that can identify the certificate. */
325
334
  Tags?: AcmCertificate_Tag[];
335
+ /** The method you want to use to validate that you own or control the domain associated with a public certificate. Valid values are DNS, EMAIL or HTTP */
326
336
  ValidationMethod?: string;
327
337
  }, attributes?: CFResourceAttributes);
328
- readonly Id: string;
338
+ readonly CertificateArn: string;
329
339
  }
330
340
 
331
341
  export declare class AcmeDomainValidation {
@@ -26890,6 +26900,8 @@ export declare class PlacementGroup {
26890
26900
  GroupId?: string;
26891
26901
  /** The Group Name of Placement Group. */
26892
26902
  GroupName?: string;
26903
+ /** The ID of a parent placement group. Valid for strategies that support parent group linking. */
26904
+ ParentGroupId?: string;
26893
26905
  /** The number of partitions. Valid only when **Strategy** is set to `partition` */
26894
26906
  PartitionCount?: number;
26895
26907
  /** The Spread Level of Placement Group is an enum where it accepts either host or rack when strategy is spread */
@@ -40698,7 +40710,7 @@ export declare class AcmAccount_ExpiryEventsConfiguration {
40698
40710
 
40699
40711
  export declare class AcmCertificate_DomainValidationOption {
40700
40712
  constructor(props: {
40701
- DomainName: string;
40713
+ DomainName?: string;
40702
40714
  HostedZoneId?: string;
40703
40715
  ValidationDomain?: string;
40704
40716
  });
@@ -40706,7 +40718,9 @@ export declare class AcmCertificate_DomainValidationOption {
40706
40718
 
40707
40719
  export declare class AcmCertificate_Tag {
40708
40720
  constructor(props: {
40721
+ /** The tag's key. */
40709
40722
  Key: string;
40723
+ /** The tag's value. */
40710
40724
  Value: string;
40711
40725
  });
40712
40726
  }
@@ -67544,7 +67558,7 @@ export declare class DomainStats {
67544
67558
 
67545
67559
  export declare class DomainValidationOption {
67546
67560
  constructor(props: {
67547
- DomainName: string;
67561
+ DomainName?: string;
67548
67562
  HostedZoneId?: string;
67549
67563
  ValidationDomain?: string;
67550
67564
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-aws",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
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,7 +80,7 @@
80
80
  "typescript": "^5.9.3"
81
81
  },
82
82
  "peerDependencies": {
83
- "@intentius/chant": "^0.24.0",
83
+ "@intentius/chant": "^0.25.0",
84
84
  "typescript": "^5.9.3"
85
85
  }
86
86
  }
@@ -314,18 +314,28 @@ export declare class AcmAccount {
314
314
 
315
315
  export declare class AcmCertificate {
316
316
  constructor(props: {
317
+ /** The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate */
317
318
  DomainName: string;
319
+ /** The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */
320
+ CertificateArn?: string;
321
+ /** The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */
318
322
  CertificateAuthorityArn?: string;
319
- CertificateExport?: string;
320
- CertificateTransparencyLoggingPreference?: string;
323
+ /** Specifies whether the certificate can be exported. ENABLED allows the certificate to be exported, DISABLED prevents export. */
324
+ CertificateExport?: "DISABLED" | "ENABLED";
325
+ /** You can opt out of certificate transparency logging by specifying the DISABLED option. Opt in by specifying ENABLED. */
326
+ CertificateTransparencyLoggingPreference?: "DISABLED" | "ENABLED";
327
+ /** Domain information that domain name registrars use to verify your identity. */
321
328
  DomainValidationOptions?: AcmCertificate_DomainValidationOption[];
322
- Id?: string;
329
+ /** Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. */
323
330
  KeyAlgorithm?: string;
331
+ /** Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. */
324
332
  SubjectAlternativeNames?: string[];
333
+ /** Key-value pairs that can identify the certificate. */
325
334
  Tags?: AcmCertificate_Tag[];
335
+ /** The method you want to use to validate that you own or control the domain associated with a public certificate. Valid values are DNS, EMAIL or HTTP */
326
336
  ValidationMethod?: string;
327
337
  }, attributes?: CFResourceAttributes);
328
- readonly Id: string;
338
+ readonly CertificateArn: string;
329
339
  }
330
340
 
331
341
  export declare class AcmeDomainValidation {
@@ -26890,6 +26900,8 @@ export declare class PlacementGroup {
26890
26900
  GroupId?: string;
26891
26901
  /** The Group Name of Placement Group. */
26892
26902
  GroupName?: string;
26903
+ /** The ID of a parent placement group. Valid for strategies that support parent group linking. */
26904
+ ParentGroupId?: string;
26893
26905
  /** The number of partitions. Valid only when **Strategy** is set to `partition` */
26894
26906
  PartitionCount?: number;
26895
26907
  /** The Spread Level of Placement Group is an enum where it accepts either host or rack when strategy is spread */
@@ -40698,7 +40710,7 @@ export declare class AcmAccount_ExpiryEventsConfiguration {
40698
40710
 
40699
40711
  export declare class AcmCertificate_DomainValidationOption {
40700
40712
  constructor(props: {
40701
- DomainName: string;
40713
+ DomainName?: string;
40702
40714
  HostedZoneId?: string;
40703
40715
  ValidationDomain?: string;
40704
40716
  });
@@ -40706,7 +40718,9 @@ export declare class AcmCertificate_DomainValidationOption {
40706
40718
 
40707
40719
  export declare class AcmCertificate_Tag {
40708
40720
  constructor(props: {
40721
+ /** The tag's key. */
40709
40722
  Key: string;
40723
+ /** The tag's value. */
40710
40724
  Value: string;
40711
40725
  });
40712
40726
  }
@@ -67544,7 +67558,7 @@ export declare class DomainStats {
67544
67558
 
67545
67559
  export declare class DomainValidationOption {
67546
67560
  constructor(props: {
67547
- DomainName: string;
67561
+ DomainName?: string;
67548
67562
  HostedZoneId?: string;
67549
67563
  ValidationDomain?: string;
67550
67564
  });
@@ -19,7 +19,7 @@ export const AccountCustomization = createResource("AWS::UXC::AccountCustomizati
19
19
  export const AccountPolicy = createResource("AWS::Logs::AccountPolicy", "aws", {"AccountId":"AccountId"});
20
20
  export const ACL = createResource("AWS::MemoryDB::ACL", "aws", {"Status":"Status","Arn":"Arn"});
21
21
  export const AcmAccount = createResource("AWS::CertificateManager::Account", "aws", {"AccountId":"AccountId"});
22
- export const AcmCertificate = createResource("AWS::CertificateManager::Certificate", "aws", {"Id":"Id"});
22
+ export const AcmCertificate = createResource("AWS::CertificateManager::Certificate", "aws", {"CertificateArn":"CertificateArn"});
23
23
  export const AcmeDomainValidation = createResource("AWS::CertificateManager::AcmeDomainValidation", "aws", {"Arn":"Arn"});
24
24
  export const AcmeEndpoint = createResource("AWS::CertificateManager::AcmeEndpoint", "aws", {"AcmeEndpointArn":"AcmeEndpointArn","EndpointUrl":"EndpointUrl"});
25
25
  export const AcmeExternalAccountBinding = createResource("AWS::CertificateManager::AcmeExternalAccountBinding", "aws", {"AcmeExternalAccountBindingArn":"AcmeExternalAccountBindingArn"});
@@ -1768,7 +1768,21 @@
1768
1768
  "kind": "resource",
1769
1769
  "lexicon": "aws",
1770
1770
  "attrs": {
1771
- "Id": "Id"
1771
+ "CertificateArn": "CertificateArn"
1772
+ },
1773
+ "propertyConstraints": {
1774
+ "CertificateTransparencyLoggingPreference": {
1775
+ "enum": [
1776
+ "ENABLED",
1777
+ "DISABLED"
1778
+ ]
1779
+ },
1780
+ "CertificateExport": {
1781
+ "enum": [
1782
+ "ENABLED",
1783
+ "DISABLED"
1784
+ ]
1785
+ }
1772
1786
  },
1773
1787
  "createOnly": [
1774
1788
  "SubjectAlternativeNames",
@@ -1776,11 +1790,21 @@
1776
1790
  "ValidationMethod",
1777
1791
  "KeyAlgorithm",
1778
1792
  "DomainName",
1779
- "CertificateAuthorityArn"
1793
+ "CertificateAuthorityArn",
1794
+ "CertificateExport"
1795
+ ],
1796
+ "writeOnly": [
1797
+ "DomainValidationOptions/*/HostedZoneId",
1798
+ "ValidationMethod"
1780
1799
  ],
1781
1800
  "primaryIdentifier": [
1782
- "Id"
1783
- ]
1801
+ "CertificateArn"
1802
+ ],
1803
+ "tagging": {
1804
+ "taggable": true,
1805
+ "tagOnCreate": true,
1806
+ "tagUpdatable": true
1807
+ }
1784
1808
  },
1785
1809
  "AcmCertificate_DomainValidationOption": {
1786
1810
  "resourceType": "AWS::CertificateManager::Certificate.DomainValidationOption",
@@ -73461,7 +73485,8 @@
73461
73485
  "Tags",
73462
73486
  "Strategy",
73463
73487
  "SpreadLevel",
73464
- "PartitionCount"
73488
+ "PartitionCount",
73489
+ "ParentGroupId"
73465
73490
  ],
73466
73491
  "primaryIdentifier": [
73467
73492
  "GroupName"