@firestartr/cli 0.1.17 → 0.1.18

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.
@@ -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);