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/bin/.bundled +3 -3
- package/bin/.metafile.json +6347 -4857
- package/bin/assets/generators/account/generator.js +362 -65
- package/bin/assets/generators/application/generator.js +283 -236
- package/bin/assets/generators/cdn/generator.js +276 -223
- package/bin/assets/generators/compute/generator.js +271 -223
- package/bin/assets/generators/compute/service/generator.js +176 -128
- package/bin/assets/generators/database/generator.js +271 -223
- package/bin/assets/generators/database/proxy/generator.js +182 -134
- package/bin/assets/generators/domain/files/infrastructure.ts +31 -0
- package/bin/assets/generators/domain/generator.js +362 -65
- package/bin/assets/generators/network/generator.js +182 -134
- package/bin/assets/generators/organisation/generator.js +362 -65
- package/bin/assets/generators/shared/files/package.json +2 -2
- package/bin/assets/generators/storage/s3/generator.js +271 -223
- package/bin/assets/generators/tunnel/generator.js +182 -134
- package/bin/fjall.bundle.js +820 -662
- package/package.json +4 -3
- package/bin/assets/generators/domain/files/infrastructure.ts.ejs +0 -22
- package/bin/assets/generators/domain/files/zone.bind.ejs +0 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fjall",
|
|
3
|
-
"version": "
|
|
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": "^
|
|
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": "
|
|
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 %>.
|