published on Monday, Aug 17, 2026 by stackitcloud
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:
- 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
Telemetryrouter
Instance Filter - 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
Telemetryrouter
Instance Filter Args - 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.
- 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
Telemetryrouter
Instance Filter - 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
Telemetryrouter
Instance Filter - 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
Telemetryrouter
Instance Filter Args - The TelemetryRouter global filter settings
- region str
- 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 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:
- 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. - 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. - 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. - 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. - 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. - 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. - uri str
- 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. - 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) -> TelemetryrouterInstancefunc 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.
- 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
Telemetryrouter
Instance Filter - 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. - 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
Telemetryrouter
Instance Filter Args - 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. - 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. - 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
Telemetryrouter
Instance Filter - 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. - 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
Telemetryrouter
Instance Filter - 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. - 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
Telemetryrouter
Instance Filter Args - 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. - uri str
- 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 Property Map
- 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. - uri String
- The TelemetryRouter instance's URI
Supporting Types
TelemetryrouterInstanceFilter, TelemetryrouterInstanceFilterArgs
- Attributes
List<Telemetryrouter
Instance Filter Attribute> - The TelemetryRouter global filter attributes
- Attributes
[]Telemetryrouter
Instance Filter Attribute - The TelemetryRouter global filter attributes
- attributes list(object)
- The TelemetryRouter global filter attributes
- attributes
List<Telemetryrouter
Instance Filter Attribute> - The TelemetryRouter global filter attributes
- attributes
Telemetryrouter
Instance Filter Attribute[] - The TelemetryRouter global filter attributes
- attributes
Sequence[Telemetryrouter
Instance Filter Attribute] - 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
stackitTerraform Provider.
published on Monday, Aug 17, 2026 by stackitcloud