@firestartr/cli 0.1.17 → 0.1.19
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/build/index.js +351 -198
- package/build/provisioner/dist-cdktf/index.js +3 -1
- package/build/provisioner/dist-cdktf/index.js.map +1 -1
- package/build/provisioner/dist-cdktf/src/entities/firestartrgithubgroup/helpers/TeamsHelper.js +1 -0
- package/build/provisioner/dist-cdktf/src/handlers/index.d.ts +1 -1
- package/build/provisioner/dist-cdktf/tsconfig.cdktf.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -51519,9 +51519,10 @@ exports["default"] = {
|
|
|
51519
51519
|
"use strict";
|
|
51520
51520
|
|
|
51521
51521
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
51522
|
-
exports.TFWorkspaceRefCR = exports.TFWorkspaceRefRegex = void 0;
|
|
51522
|
+
exports.TFWorkspaceRefCR = exports.GroupRefRegex = exports.TFWorkspaceRefRegex = void 0;
|
|
51523
51523
|
const regModuleName = /[\w\-\.]+/;
|
|
51524
51524
|
exports.TFWorkspaceRefRegex = new RegExp(`\\$\\{\\{\\s*tfworkspace\\:(${regModuleName.source})\\:outputs\\.(${regModuleName.source})\\s*\\}\\}`, 'ig');
|
|
51525
|
+
exports.GroupRefRegex = new RegExp(`group\\:(${regModuleName.source})`, 'ig');
|
|
51525
51526
|
exports.TFWorkspaceRefCR = new RegExp(`\\$\\{\\{\\s*references\\.(${regModuleName.source})\\s*\\}\\}`, 'i');
|
|
51526
51527
|
|
|
51527
51528
|
|
|
@@ -52504,6 +52505,7 @@ function provisionGroup(scope, fsGithubGroup) {
|
|
|
52504
52505
|
name: fsGithubGroup.metadata.name,
|
|
52505
52506
|
description: fsGithubGroup.spec.description,
|
|
52506
52507
|
privacy: fsGithubGroup.spec.privacy,
|
|
52508
|
+
parentTeamId: fsGithubGroup.spec.parentTeam ? fsGithubGroup.resolveRef(fsGithubGroup.spec.parentTeam, "id") : null,
|
|
52507
52509
|
};
|
|
52508
52510
|
const tfStateKey = `_${fsGithubGroup.getTfStateKey()}`;
|
|
52509
52511
|
const group = new team_1.Team(scope, tfStateKey, config);
|