GetOrganizationTeamSyncGroups

Use this data source to retrieve the identity provider (IdP) groups for an organization.

Example Usage

using Pulumi;
using Github = Pulumi.Github;

class MyStack : Stack
{
    public MyStack()
    {
        var test = Output.Create(Github.GetOrganizationTeamSyncGroups.InvokeAsync());
    }

}

Coming soon!

import pulumi
import pulumi_github as github

test = github.get_organization_team_sync_groups()
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";

const test = pulumi.output(github.getOrganizationTeamSyncGroups({ async: true }));

Using GetOrganizationTeamSyncGroups

function getOrganizationTeamSyncGroups(opts?: InvokeOptions): Promise<GetOrganizationTeamSyncGroupsResult>
function  get_organization_team_sync_groups(opts=None)
func GetOrganizationTeamSyncGroups(ctx *Context, opts ...InvokeOption) (*GetOrganizationTeamSyncGroupsResult, error)
public static class GetOrganizationTeamSyncGroups {
    public static Task<GetOrganizationTeamSyncGroupsResult> InvokeAsync(InvokeOptions? opts = null)
}

GetOrganizationTeamSyncGroups Result

The following output properties are available:

Groups List<GetOrganizationTeamSyncGroupsGroup>

An Array of GitHub Identity Provider Groups. Each group block consists of the fields documented below.

Id string

The provider-assigned unique ID for this managed resource.

Groups []GetOrganizationTeamSyncGroupsGroup

An Array of GitHub Identity Provider Groups. Each group block consists of the fields documented below.

Id string

The provider-assigned unique ID for this managed resource.

groups GetOrganizationTeamSyncGroupsGroup[]

An Array of GitHub Identity Provider Groups. Each group block consists of the fields documented below.

id string

The provider-assigned unique ID for this managed resource.

groups List[GetOrganizationTeamSyncGroupsGroup]

An Array of GitHub Identity Provider Groups. Each group block consists of the fields documented below.

id str

The provider-assigned unique ID for this managed resource.

Supporting Types

GetOrganizationTeamSyncGroupsGroup

See the output API doc for this type.

See the output API doc for this type.

See the output API doc for this type.

GroupDescription string

The description of the IdP group.

GroupId string

The ID of the IdP group.

GroupName string

The name of the IdP group.

GroupDescription string

The description of the IdP group.

GroupId string

The ID of the IdP group.

GroupName string

The name of the IdP group.

groupDescription string

The description of the IdP group.

groupId string

The ID of the IdP group.

groupName string

The name of the IdP group.

groupDescription str

The description of the IdP group.

groupId str

The ID of the IdP group.

groupName str

The name of the IdP group.

Package Details

Repository
https://github.com/pulumi/pulumi-github
License
Apache-2.0
Notes
This Pulumi package is based on the github Terraform Provider.