fjall 2.23.0 → 2.24.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 +3152 -4911
- package/bin/assets/generators/account/generator.js +30 -30
- package/bin/assets/generators/application/generator.js +108 -108
- package/bin/assets/generators/cdn/generator.js +159 -159
- package/bin/assets/generators/compute/generator.js +162 -162
- package/bin/assets/generators/compute/service/generator.js +118 -118
- package/bin/assets/generators/database/generator.js +160 -160
- package/bin/assets/generators/database/proxy/generator.js +118 -118
- package/bin/assets/generators/domain/generator.js +30 -30
- package/bin/assets/generators/network/generator.js +115 -115
- package/bin/assets/generators/organisation/files/account/infrastructure.ts +4 -1
- package/bin/assets/generators/organisation/files/organisation/infrastructure.ts +10 -1
- package/bin/assets/generators/organisation/generator.js +30 -30
- package/bin/assets/generators/shared/files/package.json +2 -2
- package/bin/assets/generators/storage/s3/generator.js +161 -161
- package/bin/assets/generators/tunnel/generator.js +115 -115
- package/bin/fjall.bundle.js +611 -538
- package/package.json +4 -3
|
@@ -6,7 +6,10 @@ const config = getConfig();
|
|
|
6
6
|
|
|
7
7
|
if (config.environment !== "platform" && config.environment !== "root") {
|
|
8
8
|
const app = App.getInstance();
|
|
9
|
-
const account = OrganisationFactory.build("Account", {
|
|
9
|
+
const account = OrganisationFactory.build("Account", {
|
|
10
|
+
type: "account"<% if (security) { %>,
|
|
11
|
+
securityTier: "<%= security %>"<% } %>
|
|
12
|
+
})(app);
|
|
10
13
|
<% if (security === "foundation" || security === "compliance" || security === "hardened") { -%>
|
|
11
14
|
|
|
12
15
|
account.enableGuardDuty();
|
|
@@ -28,7 +28,16 @@ if (config.environment === "root") {
|
|
|
28
28
|
orgEmail: "<%= email %>"
|
|
29
29
|
});
|
|
30
30
|
|
|
31
|
-
//
|
|
31
|
+
// To manage AWS Identity Centre access in code (users, groups, permission
|
|
32
|
+
// sets), add an identityCentre block to the config above — full guide:
|
|
33
|
+
// aiDocs/guides/identity-center-memberships.md
|
|
34
|
+
//
|
|
35
|
+
// identityCentre: {
|
|
36
|
+
// source: "external", // users provisioned by Google Workspace / Entra ID sync
|
|
37
|
+
// memberships: {
|
|
38
|
+
// AdministratorAccess: ["you@example.com"]
|
|
39
|
+
// }
|
|
40
|
+
// }
|
|
32
41
|
<% if (security === "compliance" || security === "hardened") { -%>
|
|
33
42
|
|
|
34
43
|
const rootIdCtx = organisation.node.tryGetContext("rootId");
|