Harness v0.0.6 published on Saturday, Jul 1, 2023 by lbrlabs
harness.platform.getEnvironmentGroup
Explore with Pulumi AI
Data source for retrieving a Harness environment group.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Harness = Pulumi.Harness;
return await Deployment.RunAsync(() => 
{
    var example = Harness.Platform.GetEnvironmentGroup.Invoke(new()
    {
        Identifier = "identifier",
        OrgId = "org_id",
        ProjectId = "project_id",
    });
});
package main
import (
	"github.com/lbrlabs/pulumi-harness/sdk/go/harness/platform"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := platform.LookupEnvironmentGroup(ctx, &platform.LookupEnvironmentGroupArgs{
			Identifier: "identifier",
			OrgId:      "org_id",
			ProjectId:  "project_id",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.platform.PlatformFunctions;
import com.pulumi.harness.platform.inputs.GetEnvironmentGroupArgs;
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) {
        final var example = PlatformFunctions.getEnvironmentGroup(GetEnvironmentGroupArgs.builder()
            .identifier("identifier")
            .orgId("org_id")
            .projectId("project_id")
            .build());
    }
}
import pulumi
import pulumi_harness as harness
example = harness.platform.get_environment_group(identifier="identifier",
    org_id="org_id",
    project_id="project_id")
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@pulumi/harness";
const example = harness.platform.getEnvironmentGroup({
    identifier: "identifier",
    orgId: "org_id",
    projectId: "project_id",
});
variables:
  example:
    fn::invoke:
      Function: harness:platform:getEnvironmentGroup
      Arguments:
        identifier: identifier
        orgId: org_id
        projectId: project_id
Using getEnvironmentGroup
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 getEnvironmentGroup(args: GetEnvironmentGroupArgs, opts?: InvokeOptions): Promise<GetEnvironmentGroupResult>
function getEnvironmentGroupOutput(args: GetEnvironmentGroupOutputArgs, opts?: InvokeOptions): Output<GetEnvironmentGroupResult>def get_environment_group(color: Optional[str] = None,
                          identifier: Optional[str] = None,
                          org_id: Optional[str] = None,
                          project_id: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetEnvironmentGroupResult
def get_environment_group_output(color: Optional[pulumi.Input[str]] = None,
                          identifier: Optional[pulumi.Input[str]] = None,
                          org_id: Optional[pulumi.Input[str]] = None,
                          project_id: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetEnvironmentGroupResult]func LookupEnvironmentGroup(ctx *Context, args *LookupEnvironmentGroupArgs, opts ...InvokeOption) (*LookupEnvironmentGroupResult, error)
func LookupEnvironmentGroupOutput(ctx *Context, args *LookupEnvironmentGroupOutputArgs, opts ...InvokeOption) LookupEnvironmentGroupResultOutput> Note: This function is named LookupEnvironmentGroup in the Go SDK.
public static class GetEnvironmentGroup 
{
    public static Task<GetEnvironmentGroupResult> InvokeAsync(GetEnvironmentGroupArgs args, InvokeOptions? opts = null)
    public static Output<GetEnvironmentGroupResult> Invoke(GetEnvironmentGroupInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetEnvironmentGroupResult> getEnvironmentGroup(GetEnvironmentGroupArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: harness:platform/getEnvironmentGroup:getEnvironmentGroup
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Identifier string
 - identifier of the environment group.
 - Org
Id string - org_id of the environment group.
 - Project
Id string - project_id of the environment group.
 - Color string
 - Color of the environment group.
 
- Identifier string
 - identifier of the environment group.
 - Org
Id string - org_id of the environment group.
 - Project
Id string - project_id of the environment group.
 - Color string
 - Color of the environment group.
 
- identifier String
 - identifier of the environment group.
 - org
Id String - org_id of the environment group.
 - project
Id String - project_id of the environment group.
 - color String
 - Color of the environment group.
 
- identifier string
 - identifier of the environment group.
 - org
Id string - org_id of the environment group.
 - project
Id string - project_id of the environment group.
 - color string
 - Color of the environment group.
 
- identifier str
 - identifier of the environment group.
 - org_
id str - org_id of the environment group.
 - project_
id str - project_id of the environment group.
 - color str
 - Color of the environment group.
 
- identifier String
 - identifier of the environment group.
 - org
Id String - org_id of the environment group.
 - project
Id String - project_id of the environment group.
 - color String
 - Color of the environment group.
 
getEnvironmentGroup Result
The following output properties are available:
- color str
 - Color of the environment group.
 - id str
 - The provider-assigned unique ID for this managed resource.
 - identifier str
 - identifier of the environment group.
 - org_
id str - org_id of the environment group.
 - project_
id str - project_id of the environment group.
 - yaml str
 - Input Set YAML
 
Package Details
- Repository
 - harness lbrlabs/pulumi-harness
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
harnessTerraform Provider.