adventurous-television-3865
09/20/2022, 4:50 PMbillowy-army-68599
const githubAdminsGroup = new azuread.Group("github-admins", {
displayName: "github-admins",
owners: sourcePlatformGroup.members,
securityEnabled: true,
});
const exampleGroupMember = new azuread.GroupMember("githubMembers", {
groupObjectId: githubAdminsGroup.id,
memberObjectId: // add member objects for each user here,
});
adventurous-television-3865
09/20/2022, 5:29 PMbillowy-army-68599
.then
or the apply
little-cartoon-10569
09/20/2022, 8:05 PMmembers
an Output<array> of Output<string>s (ids)? You may be able to use
members: pulumi.all([array1, array2])
.apply(([a1, a2]) => [...a1, ...a2]);
This won't work if the type of members isn't Output<Output<string>[]>
or similarl.adventurous-television-3865
09/21/2022, 12:40 AM