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.
@@ -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", { type: "account" })(app);
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
- // For AWS Identity Center permission sets / group memberships in code: aiDocs/guides/identity-center-memberships.md
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");