1. Packages
  2. Honeycombio Provider
  3. API Docs
  4. getEnvironment
honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio

honeycombio.getEnvironment

Explore with Pulumi AI

honeycombio logo
honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio

    # Data Source: honeycombio.Environment

    The honeycombio.Environment data source retrieves the details of a single Environment. If you want to retrieve multiple Environments, use the honeycombio.getEnvironments data source instead.

    This data source requires the provider be configured with a Management Key with environments:read in the configured scopes.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as honeycombio from "@pulumi/honeycombio";
    
    const prod = honeycombio.getEnvironment({
        id: "hcaen_01j1d7t02zf7wgw7q89z3t60vf",
    });
    
    import pulumi
    import pulumi_honeycombio as honeycombio
    
    prod = honeycombio.get_environment(id="hcaen_01j1d7t02zf7wgw7q89z3t60vf")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/honeycombio/honeycombio"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := honeycombio.LookupEnvironment(ctx, &honeycombio.LookupEnvironmentArgs{
    			Id: "hcaen_01j1d7t02zf7wgw7q89z3t60vf",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Honeycombio = Pulumi.Honeycombio;
    
    return await Deployment.RunAsync(() => 
    {
        var prod = Honeycombio.GetEnvironment.Invoke(new()
        {
            Id = "hcaen_01j1d7t02zf7wgw7q89z3t60vf",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.honeycombio.HoneycombioFunctions;
    import com.pulumi.honeycombio.inputs.GetEnvironmentArgs;
    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 prod = HoneycombioFunctions.getEnvironment(GetEnvironmentArgs.builder()
                .id("hcaen_01j1d7t02zf7wgw7q89z3t60vf")
                .build());
    
        }
    }
    
    variables:
      prod:
        fn::invoke:
          function: honeycombio:getEnvironment
          arguments:
            id: hcaen_01j1d7t02zf7wgw7q89z3t60vf
    

    Using getEnvironment

    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 getEnvironment(args: GetEnvironmentArgs, opts?: InvokeOptions): Promise<GetEnvironmentResult>
    function getEnvironmentOutput(args: GetEnvironmentOutputArgs, opts?: InvokeOptions): Output<GetEnvironmentResult>
    def get_environment(id: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetEnvironmentResult
    def get_environment_output(id: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetEnvironmentResult]
    func LookupEnvironment(ctx *Context, args *LookupEnvironmentArgs, opts ...InvokeOption) (*LookupEnvironmentResult, error)
    func LookupEnvironmentOutput(ctx *Context, args *LookupEnvironmentOutputArgs, opts ...InvokeOption) LookupEnvironmentResultOutput

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

    public static class GetEnvironment 
    {
        public static Task<GetEnvironmentResult> InvokeAsync(GetEnvironmentArgs args, InvokeOptions? opts = null)
        public static Output<GetEnvironmentResult> Invoke(GetEnvironmentInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEnvironmentResult> getEnvironment(GetEnvironmentArgs args, InvokeOptions options)
    public static Output<GetEnvironmentResult> getEnvironment(GetEnvironmentArgs args, InvokeOptions options)
    
    fn::invoke:
      function: honeycombio:index/getEnvironment:getEnvironment
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The ID of the Environment
    Id string
    The ID of the Environment
    id String
    The ID of the Environment
    id string
    The ID of the Environment
    id str
    The ID of the Environment
    id String
    The ID of the Environment

    getEnvironment Result

    The following output properties are available:

    Color string
    the Environment's color.
    DeleteProtected bool
    the current state of the Environment's deletion protection status.
    Description string
    the Environment's description.
    Id string
    Name string
    the Environment's name.
    Slug string
    the Environment's slug.
    Color string
    the Environment's color.
    DeleteProtected bool
    the current state of the Environment's deletion protection status.
    Description string
    the Environment's description.
    Id string
    Name string
    the Environment's name.
    Slug string
    the Environment's slug.
    color String
    the Environment's color.
    deleteProtected Boolean
    the current state of the Environment's deletion protection status.
    description String
    the Environment's description.
    id String
    name String
    the Environment's name.
    slug String
    the Environment's slug.
    color string
    the Environment's color.
    deleteProtected boolean
    the current state of the Environment's deletion protection status.
    description string
    the Environment's description.
    id string
    name string
    the Environment's name.
    slug string
    the Environment's slug.
    color str
    the Environment's color.
    delete_protected bool
    the current state of the Environment's deletion protection status.
    description str
    the Environment's description.
    id str
    name str
    the Environment's name.
    slug str
    the Environment's slug.
    color String
    the Environment's color.
    deleteProtected Boolean
    the current state of the Environment's deletion protection status.
    description String
    the Environment's description.
    id String
    name String
    the Environment's name.
    slug String
    the Environment's slug.

    Package Details

    Repository
    honeycombio honeycombio/terraform-provider-honeycombio
    License
    Notes
    This Pulumi package is based on the honeycombio Terraform Provider.
    honeycombio logo
    honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio