stacktape 3.5.6 → 3.5.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/plain.d.ts +12 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stacktape",
3
- "version": "3.5.6",
3
+ "version": "3.5.7",
4
4
  "description": "PaaS 2.0 that deploys to your own AWS account.",
5
5
  "author": "Stacktape team <support@stacktape.com>",
6
6
  "license": "MIT",
package/plain.d.ts CHANGED
@@ -6275,14 +6275,16 @@ export interface ApplicationLoadBalancerProps {
6275
6275
  */
6276
6276
  interface?: "internal" | "internet";
6277
6277
  /**
6278
- * #### Custom domains. Stacktape auto-creates DNS records and TLS certificates.
6278
+ * #### Custom domains.
6279
6279
  *
6280
6280
  * ---
6281
6281
  *
6282
- * Your domain must be added as a Route53 hosted zone in your AWS account first.
6283
- * Use `customCertificateArns` on listeners if you want to bring your own certificates.
6282
+ * By default, Stacktape creates DNS records and TLS certificates for each domain.
6283
+ * If you manage DNS yourself, set `disableDnsRecordCreation` and provide `customCertificateArn`.
6284
+ *
6285
+ * Backward compatible format `string[]` is still supported.
6284
6286
  */
6285
- customDomains?: string[];
6287
+ customDomains?: string[] | DomainConfiguration[];
6286
6288
  /**
6287
6289
  * #### Custom listeners (port + protocol). Defaults to HTTPS on 443 + HTTP on 80 (redirecting to HTTPS).
6288
6290
  */
@@ -6594,13 +6596,16 @@ export interface NetworkLoadBalancerProps {
6594
6596
  */
6595
6597
  interface?: "internal" | "internet";
6596
6598
  /**
6597
- * #### Custom domains. Stacktape auto-creates DNS records and TLS certificates for TLS listeners.
6599
+ * #### Custom domains.
6598
6600
  *
6599
6601
  * ---
6600
6602
  *
6601
- * Your domain must be added as a Route53 hosted zone in your AWS account first.
6603
+ * By default, Stacktape creates DNS records and TLS certificates for each domain.
6604
+ * If you manage DNS yourself, set `disableDnsRecordCreation` and provide `customCertificateArn`.
6605
+ *
6606
+ * Backward compatible format `string[]` is still supported.
6602
6607
  */
6603
- customDomains?: string[];
6608
+ customDomains?: string[] | DomainConfiguration[];
6604
6609
  /**
6605
6610
  * #### Listeners define which ports and protocols (TCP/TLS) this load balancer accepts traffic on.
6606
6611
  */