fjall 2.33.0 → 3.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fjall",
3
- "version": "2.33.0",
3
+ "version": "3.0.0",
4
4
  "description": "Fjall CLI",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",
@@ -13,6 +13,7 @@
13
13
  "dependencies": {
14
14
  "@aws-cdk/cloudformation-diff": "2.187.1",
15
15
  "@aws-sdk/client-account": "^3.1067.0",
16
+ "@aws-sdk/client-acm": "^3.1038.0",
16
17
  "@aws-sdk/client-auto-scaling": "^3.1038.0",
17
18
  "@aws-sdk/client-backup": "^3.1038.0",
18
19
  "@aws-sdk/client-cloudformation": "^3.1038.0",
@@ -49,7 +50,7 @@
49
50
  "typescript": "^6.0.3"
50
51
  },
51
52
  "devDependencies": {
52
- "@fjall/cli": "^2.33.0",
53
+ "@fjall/cli": "^3.0.0",
53
54
  "esbuild": "^0.28.0",
54
55
  "vitest": "^4.1.5"
55
56
  },
@@ -69,5 +70,5 @@
69
70
  "engines": {
70
71
  "node": ">=22.0.0"
71
72
  },
72
- "gitHead": "61c0d1917597c6d02e8e78b03420afdd194eaafc"
73
+ "gitHead": "848a386e3e2244401b76faabd02818c682d231e8"
73
74
  }
@@ -1,22 +0,0 @@
1
- import {
2
- App,
3
- Domain,
4
- } from "@fjall/components-infrastructure";
5
-
6
- // Fjall-managed domain — edit this file to add or change records.
7
- // See docs/domains.md for the Domain construct API.
8
-
9
- const app = App.getApp("<%= safeZoneName %>Domain");
10
-
11
- new Domain(app, "<%= safeZoneName %>", {
12
- registrar: "route53",
13
- zoneName: "<%= domainName %>",
14
- <% if (hostedZoneId) { -%>
15
- hostedZoneId: "<%= hostedZoneId %>",
16
- <% } -%>
17
- certificates: [
18
- { domainName: "<%= domainName %>" },
19
- ],
20
- records: [],
21
- delegations: [],
22
- });
@@ -1,14 +0,0 @@
1
- ; zone.bind — managed by fjall
2
- ; Edit this file and run 'fjall deploy domain' to apply changes
3
- $ORIGIN <%= domainName %>.
4
- $TTL 300
5
-
6
- ; Certificate for this domain
7
- $FJALL-CERT <%= domainName %>
8
-
9
- ; Add your DNS records below
10
- ; Examples:
11
- ; @ IN A ALIAS fjall:cdn:my-app
12
- ; www IN CNAME <%= domainName %>.
13
- ; api IN A ALIAS fjall:ecs:my-api
14
- ; @ IN MX 10 mail.<%= domainName %>.