1. Packages
  2. Wavefront Provider
  3. API Docs
  4. getDefaultUserGroup
wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware
wavefront logo
wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware

    Use this data source to get the Group ID of the Everyone group in Wavefront.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as wavefront from "@pulumi/wavefront";
    
    // Get the default user group "Everyone"
    const everyoneGroup = wavefront.getDefaultUserGroup({});
    
    import pulumi
    import pulumi_wavefront as wavefront
    
    # Get the default user group "Everyone"
    everyone_group = wavefront.get_default_user_group()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/wavefront/v5/wavefront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Get the default user group "Everyone"
    		_, err := wavefront.GetDefaultUserGroup(ctx, &wavefront.GetDefaultUserGroupArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Wavefront = Pulumi.Wavefront;
    
    return await Deployment.RunAsync(() => 
    {
        // Get the default user group "Everyone"
        var everyoneGroup = Wavefront.GetDefaultUserGroup.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.wavefront.WavefrontFunctions;
    import com.pulumi.wavefront.inputs.GetDefaultUserGroupArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Get the default user group "Everyone"
            final var everyoneGroup = WavefrontFunctions.getDefaultUserGroup(GetDefaultUserGroupArgs.builder()
                .build());
    
        }
    }
    
    variables:
      # Get the default user group "Everyone"
      everyoneGroup:
        fn::invoke:
          function: wavefront:getDefaultUserGroup
          arguments: {}
    

    Using getDefaultUserGroup

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDefaultUserGroup(args: GetDefaultUserGroupArgs, opts?: InvokeOptions): Promise<GetDefaultUserGroupResult>
    function getDefaultUserGroupOutput(args: GetDefaultUserGroupOutputArgs, opts?: InvokeOptions): Output<GetDefaultUserGroupResult>
    def get_default_user_group(id: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetDefaultUserGroupResult
    def get_default_user_group_output(id: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetDefaultUserGroupResult]
    func GetDefaultUserGroup(ctx *Context, args *GetDefaultUserGroupArgs, opts ...InvokeOption) (*GetDefaultUserGroupResult, error)
    func GetDefaultUserGroupOutput(ctx *Context, args *GetDefaultUserGroupOutputArgs, opts ...InvokeOption) GetDefaultUserGroupResultOutput

    > Note: This function is named GetDefaultUserGroup in the Go SDK.

    public static class GetDefaultUserGroup 
    {
        public static Task<GetDefaultUserGroupResult> InvokeAsync(GetDefaultUserGroupArgs args, InvokeOptions? opts = null)
        public static Output<GetDefaultUserGroupResult> Invoke(GetDefaultUserGroupInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDefaultUserGroupResult> getDefaultUserGroup(GetDefaultUserGroupArgs args, InvokeOptions options)
    public static Output<GetDefaultUserGroupResult> getDefaultUserGroup(GetDefaultUserGroupArgs args, InvokeOptions options)
    
    fn::invoke:
      function: wavefront:index/getDefaultUserGroup:getDefaultUserGroup
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Id string
    id String
    id string
    id str
    id String

    getDefaultUserGroup Result

    The following output properties are available:

    GroupId string
    Set to the Group ID of the Everyone group, suitable for referencing in other resources that support group memberships.
    Id string
    GroupId string
    Set to the Group ID of the Everyone group, suitable for referencing in other resources that support group memberships.
    Id string
    groupId String
    Set to the Group ID of the Everyone group, suitable for referencing in other resources that support group memberships.
    id String
    groupId string
    Set to the Group ID of the Everyone group, suitable for referencing in other resources that support group memberships.
    id string
    group_id str
    Set to the Group ID of the Everyone group, suitable for referencing in other resources that support group memberships.
    id str
    groupId String
    Set to the Group ID of the Everyone group, suitable for referencing in other resources that support group memberships.
    id String

    Package Details

    Repository
    Wavefront vmware/terraform-provider-wavefront
    License
    Notes
    This Pulumi package is based on the wavefront Terraform Provider.
    wavefront logo
    wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware
      Meet Neo: Your AI Platform Teammate