1. Packages
  2. Dynatrace
  3. API Docs
  4. getHost
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.getHost

Explore with Pulumi AI

Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

!> The data source API endpoint has been deprecated, please use dynatrace.getEntity with entity type HOST instead.

The host data source allows the host ID to be retrieved by its name and optionally tags / tag-value pairs.

  • name queries for all hosts with the specified name
  • tags (optional) refers to the tags that need to be present for the host (inclusive)

If multiple hosts match the given criteria, the first result will be retrieved.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumi/dynatrace";
import * as dynatrace from "@pulumiverse/dynatrace";

const test = dynatrace.getHost({
    name: "Example",
    tags: [
        "TerraformKeyTest",
        "TerraformKeyValueTest=TestValue",
    ],
});
const _name_ = new dynatrace.ManagementZone("#name#", {entitySelectorBasedRules: [{
    enabled: true,
    selector: test.then(test => `type("host"),entityId("${test.id}")`),
}]});
Copy
import pulumi
import pulumi_dynatrace as dynatrace
import pulumiverse_dynatrace as dynatrace

test = dynatrace.get_host(name="Example",
    tags=[
        "TerraformKeyTest",
        "TerraformKeyValueTest=TestValue",
    ])
_name_ = dynatrace.ManagementZone("#name#", entity_selector_based_rules=[{
    "enabled": True,
    "selector": f"type(\"host\"),entityId(\"{test.id}\")",
}])
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		test, err := dynatrace.GetHost(ctx, &dynatrace.GetHostArgs{
			Name: "Example",
			Tags: []string{
				"TerraformKeyTest",
				"TerraformKeyValueTest=TestValue",
			},
		}, nil)
		if err != nil {
			return err
		}
		_, err = dynatrace.NewManagementZone(ctx, "#name#", &dynatrace.ManagementZoneArgs{
			EntitySelectorBasedRules: dynatrace.ManagementZoneEntitySelectorBasedRuleArray{
				&dynatrace.ManagementZoneEntitySelectorBasedRuleArgs{
					Enabled:  pulumi.Bool(true),
					Selector: pulumi.Sprintf("type(\"host\"),entityId(\"%v\")", test.Id),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumi.Dynatrace;
using Dynatrace = Pulumiverse.Dynatrace;

return await Deployment.RunAsync(() => 
{
    var test = Dynatrace.GetHost.Invoke(new()
    {
        Name = "Example",
        Tags = new[]
        {
            "TerraformKeyTest",
            "TerraformKeyValueTest=TestValue",
        },
    });

    var _name_ = new Dynatrace.ManagementZone("#name#", new()
    {
        EntitySelectorBasedRules = new[]
        {
            new Dynatrace.Inputs.ManagementZoneEntitySelectorBasedRuleArgs
            {
                Enabled = true,
                Selector = $"type(\"host\"),entityId(\"{test.Apply(getHostResult => getHostResult.Id)}\")",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.DynatraceFunctions;
import com.pulumi.dynatrace.inputs.GetHostArgs;
import com.pulumi.dynatrace.ManagementZone;
import com.pulumi.dynatrace.ManagementZoneArgs;
import com.pulumi.dynatrace.inputs.ManagementZoneEntitySelectorBasedRuleArgs;
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 test = DynatraceFunctions.getHost(GetHostArgs.builder()
            .name("Example")
            .tags(            
                "TerraformKeyTest",
                "TerraformKeyValueTest=TestValue")
            .build());

        var _name_ = new ManagementZone("#name#", ManagementZoneArgs.builder()
            .entitySelectorBasedRules(ManagementZoneEntitySelectorBasedRuleArgs.builder()
                .enabled(true)
                .selector(String.format("type(\"host\"),entityId(\"%s\")", test.applyValue(getHostResult -> getHostResult.id())))
                .build())
            .build());

    }
}
Copy
resources:
  '#name#':
    type: dynatrace:ManagementZone
    properties:
      entitySelectorBasedRules:
        - enabled: true
          selector: type("host"),entityId("${test.id}")
variables:
  test:
    fn::invoke:
      function: dynatrace:getHost
      arguments:
        name: Example
        tags:
          - TerraformKeyTest
          - TerraformKeyValueTest=TestValue
Copy

Using getHost

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 getHost(args: GetHostArgs, opts?: InvokeOptions): Promise<GetHostResult>
function getHostOutput(args: GetHostOutputArgs, opts?: InvokeOptions): Output<GetHostResult>
Copy
def get_host(name: Optional[str] = None,
             tags: Optional[Sequence[str]] = None,
             opts: Optional[InvokeOptions] = None) -> GetHostResult
def get_host_output(name: Optional[pulumi.Input[str]] = None,
             tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
             opts: Optional[InvokeOptions] = None) -> Output[GetHostResult]
Copy
func GetHost(ctx *Context, args *GetHostArgs, opts ...InvokeOption) (*GetHostResult, error)
func GetHostOutput(ctx *Context, args *GetHostOutputArgs, opts ...InvokeOption) GetHostResultOutput
Copy

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

public static class GetHost 
{
    public static Task<GetHostResult> InvokeAsync(GetHostArgs args, InvokeOptions? opts = null)
    public static Output<GetHostResult> Invoke(GetHostInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetHostResult> getHost(GetHostArgs args, InvokeOptions options)
public static Output<GetHostResult> getHost(GetHostArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: dynatrace:index/getHost:getHost
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Name This property is required. string
Tags List<string>
Required tags of the host to find
Name This property is required. string
Tags []string
Required tags of the host to find
name This property is required. String
tags List<String>
Required tags of the host to find
name This property is required. string
tags string[]
Required tags of the host to find
name This property is required. str
tags Sequence[str]
Required tags of the host to find
name This property is required. String
tags List<String>
Required tags of the host to find

getHost Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Name string
Tags List<string>
Required tags of the host to find
Id string
The provider-assigned unique ID for this managed resource.
Name string
Tags []string
Required tags of the host to find
id String
The provider-assigned unique ID for this managed resource.
name String
tags List<String>
Required tags of the host to find
id string
The provider-assigned unique ID for this managed resource.
name string
tags string[]
Required tags of the host to find
id str
The provider-assigned unique ID for this managed resource.
name str
tags Sequence[str]
Required tags of the host to find
id String
The provider-assigned unique ID for this managed resource.
name String
tags List<String>
Required tags of the host to find

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse