GetEveryoneGroup

Use this data source to retrieve the Everyone group from Okta. The same can be achieved with the okta.group.Group data source with name = "Everyone". This is simply a shortcut.

Example Usage

using Pulumi;
using Okta = Pulumi.Okta;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Okta.Group.GetEveryoneGroup.InvokeAsync());
    }

}

Coming soon!

import pulumi
import pulumi_okta as okta

example = okta.group.get_everyone_group()
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = pulumi.output(okta.group.getEveryoneGroup({ async: true }));

Using GetEveryoneGroup

function getEveryoneGroup(args: GetEveryoneGroupArgs, opts?: InvokeOptions): Promise<GetEveryoneGroupResult>
function  get_everyone_group(include_users=None, opts=None)
func GetEveryoneGroup(ctx *Context, args *GetEveryoneGroupArgs, opts ...InvokeOption) (*GetEveryoneGroupResult, error)
public static class GetEveryoneGroup {
    public static Task<GetEveryoneGroupResult> InvokeAsync(GetEveryoneGroupArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

IncludeUsers bool
IncludeUsers bool
includeUsers boolean
include_users bool

GetEveryoneGroup Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

IncludeUsers bool
Id string

The provider-assigned unique ID for this managed resource.

IncludeUsers bool
id string

The provider-assigned unique ID for this managed resource.

includeUsers boolean
id str

The provider-assigned unique ID for this managed resource.

include_users bool

Package Details

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