@firestartr/cli 0.1.18 → 0.1.20
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 +282 -194
- package/build/provisioner/dist-cdktf/index.js +1 -1
- package/build/provisioner/dist-cdktf/index.js.map +1 -1
- package/build/provisioner/dist-cdktf/src/entities/firestartrgithubgroup/helpers/TeamsHelper.js +1 -1
- package/build/provisioner/dist-cdktf/tsconfig.cdktf.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -52505,7 +52505,7 @@ function provisionGroup(scope, fsGithubGroup) {
|
|
|
52505
52505
|
name: fsGithubGroup.metadata.name,
|
|
52506
52506
|
description: fsGithubGroup.spec.description,
|
|
52507
52507
|
privacy: fsGithubGroup.spec.privacy,
|
|
52508
|
-
parentTeamId: fsGithubGroup.spec.parentTeam ? fsGithubGroup.resolveRef(fsGithubGroup.spec.parentTeam, "id") : null,
|
|
52508
|
+
parentTeamId: fsGithubGroup.spec.parentTeam ? fsGithubGroup.resolveRef(fsGithubGroup.spec.parentTeam.ref, "id") : null,
|
|
52509
52509
|
};
|
|
52510
52510
|
const tfStateKey = `_${fsGithubGroup.getTfStateKey()}`;
|
|
52511
52511
|
const group = new team_1.Team(scope, tfStateKey, config);
|