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:
GetEveryoneGroup Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Include
Users bool
- Id string
The provider-assigned unique ID for this managed resource.
- Include
Users bool
- id string
The provider-assigned unique ID for this managed resource.
- include
Users 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
oktaTerraform Provider.