1. Registry
  2. Packages
  3. stackit
  4. API Docs
  5. TelemetryrouterInstance
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud

    TelemetryRouter instance resource schema. Uses the defaultRegion specified in the provider configuration as a fallback in case no region is defined on resource level.

    Example Usage

    resource "stackit_telemetryrouter_instance" "router" {
      project_id   = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      region       = "eu01"
      display_name = "router-instance"
    }
    
    resource "stackit_telemetryrouter_instance" "router2" {
      project_id   = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      region       = "eu01"
      display_name = "router-instance"
      description  = "Example description"
      filter = {
        attributes = [
          {
            key     = "key"
            level   = "logRecord"
            matcher = "!="
            values  = ["test1", "test2"]
          },
          {
            key     = "key2"
            level   = "resource"
            matcher = "="
            values  = ["test3"]
          }
        ]
      }
    }
    

    Create TelemetryrouterInstance Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TelemetryrouterInstance(name: string, args: TelemetryrouterInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def TelemetryrouterInstance(resource_name: str,
                                args: TelemetryrouterInstanceArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def TelemetryrouterInstance(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                display_name: Optional[str] = None,
                                project_id: Optional[str] = None,
                                description: Optional[str] = None,
                                filter: Optional[TelemetryrouterInstanceFilterArgs] = None,
                                region: Optional[str] = None)
    func NewTelemetryrouterInstance(ctx *Context, name string, args TelemetryrouterInstanceArgs, opts ...ResourceOption) (*TelemetryrouterInstance, error)
    public TelemetryrouterInstance(string name, TelemetryrouterInstanceArgs args, CustomResourceOptions? opts = null)
    public TelemetryrouterInstance(String name, TelemetryrouterInstanceArgs args)
    public TelemetryrouterInstance(String name, TelemetryrouterInstanceArgs args, CustomResourceOptions options)
    
    type: stackit:TelemetryrouterInstance
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "stackit_telemetryrouter_instance" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TelemetryrouterInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TelemetryrouterInstanceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TelemetryrouterInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TelemetryrouterInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TelemetryrouterInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var telemetryrouterInstanceResource = new Stackit.TelemetryrouterInstance("telemetryrouterInstanceResource", new()
    {
        DisplayName = "string",
        ProjectId = "string",
        Description = "string",
        Filter = new Stackit.Inputs.TelemetryrouterInstanceFilterArgs
        {
            Attributes = new[]
            {
                new Stackit.Inputs.TelemetryrouterInstanceFilterAttributeArgs
                {
                    Key = "string",
                    Level = "string",
                    Matcher = "string",
                    Values = new[]
                    {
                        "string",
                    },
                },
            },
        },
        Region = "string",
    });
    
    example, err := stackit.NewTelemetryrouterInstance(ctx, "telemetryrouterInstanceResource", &stackit.TelemetryrouterInstanceArgs{
    	DisplayName: pulumi.String("string"),
    	ProjectId:   pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Filter: &stackit.TelemetryrouterInstanceFilterArgs{
    		Attributes: stackit.TelemetryrouterInstanceFilterAttributeArray{
    			&stackit.TelemetryrouterInstanceFilterAttributeArgs{
    				Key:     pulumi.String("string"),
    				Level:   pulumi.String("string"),
    				Matcher: pulumi.String("string"),
    				Values: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Region: pulumi.String("string"),
    })
    
    resource "stackit_telemetryrouter_instance" "telemetryrouterInstanceResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name = "string"
      project_id   = "string"
      description  = "string"
      filter = {
        attributes = [{
          key     = "string"
          level   = "string"
          matcher = "string"
          values  = ["string"]
        }]
      }
      region = "string"
    }
    
    var telemetryrouterInstanceResource = new TelemetryrouterInstance("telemetryrouterInstanceResource", TelemetryrouterInstanceArgs.builder()
        .displayName("string")
        .projectId("string")
        .description("string")
        .filter(TelemetryrouterInstanceFilterArgs.builder()
            .attributes(TelemetryrouterInstanceFilterAttributeArgs.builder()
                .key("string")
                .level("string")
                .matcher("string")
                .values("string")
                .build())
            .build())
        .region("string")
        .build());
    
    telemetryrouter_instance_resource = stackit.TelemetryrouterInstance("telemetryrouterInstanceResource",
        display_name="string",
        project_id="string",
        description="string",
        filter={
            "attributes": [{
                "key": "string",
                "level": "string",
                "matcher": "string",
                "values": ["string"],
            }],
        },
        region="string")
    
    const telemetryrouterInstanceResource = new stackit.TelemetryrouterInstance("telemetryrouterInstanceResource", {
        displayName: "string",
        projectId: "string",
        description: "string",
        filter: {
            attributes: [{
                key: "string",
                level: "string",
                matcher: "string",
                values: ["string"],
            }],
        },
        region: "string",
    });
    
    type: stackit:TelemetryrouterInstance
    properties:
        description: string
        displayName: string
        filter:
            attributes:
                - key: string
                  level: string
                  matcher: string
                  values:
                    - string
        projectId: string
        region: string
    

    TelemetryrouterInstance Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The TelemetryrouterInstance resource accepts the following input properties:

    DisplayName string
    The display name of the TelemetryRouter instance
    ProjectId string
    STACKIT project ID associated with the TelemetryRouter instance
    Description string
    The description of the TelemetryRouter instance
    Filter TelemetryrouterInstanceFilter
    The TelemetryRouter global filter settings
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    DisplayName string
    The display name of the TelemetryRouter instance
    ProjectId string
    STACKIT project ID associated with the TelemetryRouter instance
    Description string
    The description of the TelemetryRouter instance
    Filter TelemetryrouterInstanceFilterArgs
    The TelemetryRouter global filter settings
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    display_name string
    The display name of the TelemetryRouter instance
    project_id string
    STACKIT project ID associated with the TelemetryRouter instance
    description string
    The description of the TelemetryRouter instance
    filter object
    The TelemetryRouter global filter settings
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    displayName String
    The display name of the TelemetryRouter instance
    projectId String
    STACKIT project ID associated with the TelemetryRouter instance
    description String
    The description of the TelemetryRouter instance
    filter TelemetryrouterInstanceFilter
    The TelemetryRouter global filter settings
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    displayName string
    The display name of the TelemetryRouter instance
    projectId string
    STACKIT project ID associated with the TelemetryRouter instance
    description string
    The description of the TelemetryRouter instance
    filter TelemetryrouterInstanceFilter
    The TelemetryRouter global filter settings
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    display_name str
    The display name of the TelemetryRouter instance
    project_id str
    STACKIT project ID associated with the TelemetryRouter instance
    description str
    The description of the TelemetryRouter instance
    filter TelemetryrouterInstanceFilterArgs
    The TelemetryRouter global filter settings
    region str
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    displayName String
    The display name of the TelemetryRouter instance
    projectId String
    STACKIT project ID associated with the TelemetryRouter instance
    description String
    The description of the TelemetryRouter instance
    filter Property Map
    The TelemetryRouter global filter settings
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TelemetryrouterInstance resource produces the following output properties:

    CreationTime string
    The date and time the creation of the TelemetryRouter instance was initiated
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The TelemetryRouter instance ID
    Status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    Uri string
    The TelemetryRouter instance's URI
    CreationTime string
    The date and time the creation of the TelemetryRouter instance was initiated
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The TelemetryRouter instance ID
    Status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    Uri string
    The TelemetryRouter instance's URI
    creation_time string
    The date and time the creation of the TelemetryRouter instance was initiated
    id string
    The provider-assigned unique ID for this managed resource.
    instance_id string
    The TelemetryRouter instance ID
    status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri string
    The TelemetryRouter instance's URI
    creationTime String
    The date and time the creation of the TelemetryRouter instance was initiated
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The TelemetryRouter instance ID
    status String
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri String
    The TelemetryRouter instance's URI
    creationTime string
    The date and time the creation of the TelemetryRouter instance was initiated
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    The TelemetryRouter instance ID
    status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri string
    The TelemetryRouter instance's URI
    creation_time str
    The date and time the creation of the TelemetryRouter instance was initiated
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    The TelemetryRouter instance ID
    status str
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri str
    The TelemetryRouter instance's URI
    creationTime String
    The date and time the creation of the TelemetryRouter instance was initiated
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The TelemetryRouter instance ID
    status String
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri String
    The TelemetryRouter instance's URI

    Look up Existing TelemetryrouterInstance Resource

    Get an existing TelemetryrouterInstance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TelemetryrouterInstanceState, opts?: CustomResourceOptions): TelemetryrouterInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            creation_time: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            filter: Optional[TelemetryrouterInstanceFilterArgs] = None,
            instance_id: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            status: Optional[str] = None,
            uri: Optional[str] = None) -> TelemetryrouterInstance
    func GetTelemetryrouterInstance(ctx *Context, name string, id IDInput, state *TelemetryrouterInstanceState, opts ...ResourceOption) (*TelemetryrouterInstance, error)
    public static TelemetryrouterInstance Get(string name, Input<string> id, TelemetryrouterInstanceState? state, CustomResourceOptions? opts = null)
    public static TelemetryrouterInstance get(String name, Output<String> id, TelemetryrouterInstanceState state, CustomResourceOptions options)
    resources:  _:    type: stackit:TelemetryrouterInstance    get:      id: ${id}
    import {
      to = stackit_telemetryrouter_instance.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreationTime string
    The date and time the creation of the TelemetryRouter instance was initiated
    Description string
    The description of the TelemetryRouter instance
    DisplayName string
    The display name of the TelemetryRouter instance
    Filter TelemetryrouterInstanceFilter
    The TelemetryRouter global filter settings
    InstanceId string
    The TelemetryRouter instance ID
    ProjectId string
    STACKIT project ID associated with the TelemetryRouter instance
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    Status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    Uri string
    The TelemetryRouter instance's URI
    CreationTime string
    The date and time the creation of the TelemetryRouter instance was initiated
    Description string
    The description of the TelemetryRouter instance
    DisplayName string
    The display name of the TelemetryRouter instance
    Filter TelemetryrouterInstanceFilterArgs
    The TelemetryRouter global filter settings
    InstanceId string
    The TelemetryRouter instance ID
    ProjectId string
    STACKIT project ID associated with the TelemetryRouter instance
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    Status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    Uri string
    The TelemetryRouter instance's URI
    creation_time string
    The date and time the creation of the TelemetryRouter instance was initiated
    description string
    The description of the TelemetryRouter instance
    display_name string
    The display name of the TelemetryRouter instance
    filter object
    The TelemetryRouter global filter settings
    instance_id string
    The TelemetryRouter instance ID
    project_id string
    STACKIT project ID associated with the TelemetryRouter instance
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri string
    The TelemetryRouter instance's URI
    creationTime String
    The date and time the creation of the TelemetryRouter instance was initiated
    description String
    The description of the TelemetryRouter instance
    displayName String
    The display name of the TelemetryRouter instance
    filter TelemetryrouterInstanceFilter
    The TelemetryRouter global filter settings
    instanceId String
    The TelemetryRouter instance ID
    projectId String
    STACKIT project ID associated with the TelemetryRouter instance
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    status String
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri String
    The TelemetryRouter instance's URI
    creationTime string
    The date and time the creation of the TelemetryRouter instance was initiated
    description string
    The description of the TelemetryRouter instance
    displayName string
    The display name of the TelemetryRouter instance
    filter TelemetryrouterInstanceFilter
    The TelemetryRouter global filter settings
    instanceId string
    The TelemetryRouter instance ID
    projectId string
    STACKIT project ID associated with the TelemetryRouter instance
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    status string
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri string
    The TelemetryRouter instance's URI
    creation_time str
    The date and time the creation of the TelemetryRouter instance was initiated
    description str
    The description of the TelemetryRouter instance
    display_name str
    The display name of the TelemetryRouter instance
    filter TelemetryrouterInstanceFilterArgs
    The TelemetryRouter global filter settings
    instance_id str
    The TelemetryRouter instance ID
    project_id str
    STACKIT project ID associated with the TelemetryRouter instance
    region str
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    status str
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri str
    The TelemetryRouter instance's URI
    creationTime String
    The date and time the creation of the TelemetryRouter instance was initiated
    description String
    The description of the TelemetryRouter instance
    displayName String
    The display name of the TelemetryRouter instance
    filter Property Map
    The TelemetryRouter global filter settings
    instanceId String
    The TelemetryRouter instance ID
    projectId String
    STACKIT project ID associated with the TelemetryRouter instance
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    status String
    The status of the TelemetryRouter instance, possible values: Possible values are: reconciling, active, deleting.

    Deprecated: status is deprecated and will be removed after February 2027.

    uri String
    The TelemetryRouter instance's URI

    Supporting Types

    TelemetryrouterInstanceFilter, TelemetryrouterInstanceFilterArgs

    Attributes List<TelemetryrouterInstanceFilterAttribute>
    The TelemetryRouter global filter attributes
    Attributes []TelemetryrouterInstanceFilterAttribute
    The TelemetryRouter global filter attributes
    attributes list(object)
    The TelemetryRouter global filter attributes
    attributes List<TelemetryrouterInstanceFilterAttribute>
    The TelemetryRouter global filter attributes
    attributes TelemetryrouterInstanceFilterAttribute[]
    The TelemetryRouter global filter attributes
    attributes Sequence[TelemetryrouterInstanceFilterAttribute]
    The TelemetryRouter global filter attributes
    attributes List<Property Map>
    The TelemetryRouter global filter attributes

    TelemetryrouterInstanceFilterAttribute, TelemetryrouterInstanceFilterAttributeArgs

    Key string
    The TelemetryRouter global filter attribute key
    Level string
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    Matcher string
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    Values List<string>
    The TelemetryRouter global filter attributes
    Key string
    The TelemetryRouter global filter attribute key
    Level string
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    Matcher string
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    Values []string
    The TelemetryRouter global filter attributes
    key string
    The TelemetryRouter global filter attribute key
    level string
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    matcher string
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    values list(string)
    The TelemetryRouter global filter attributes
    key String
    The TelemetryRouter global filter attribute key
    level String
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    matcher String
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    values List<String>
    The TelemetryRouter global filter attributes
    key string
    The TelemetryRouter global filter attribute key
    level string
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    matcher string
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    values string[]
    The TelemetryRouter global filter attributes
    key str
    The TelemetryRouter global filter attribute key
    level str
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    matcher str
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    values Sequence[str]
    The TelemetryRouter global filter attributes
    key String
    The TelemetryRouter global filter attribute key
    level String
    The TelemetryRouter global filter attribute level, possible values: Possible values are: resource, scope, logRecord.
    matcher String
    The TelemetryRouter global filter attribute matcher, possible values: Possible values are: =, !=.
    values List<String>
    The TelemetryRouter global filter attributes

    Import

    In Terraform v1.5.0 and later, the + "" + import + “" + block can be used with the + "” + id + “" + attribute, for example:

    # Only use the import statement, if you want to import an existing TelemetryRouter instance
    import {
      to = stackit_telemetryrouter_instance.import-example
      id = "${var.project_id},${var.region},${var.router_instance_id}"
    }
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    stackit stackitcloud/pulumi-stackit
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.7
    published on Monday, Aug 17, 2026 by stackitcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial