1. Registry
  2. Packages
  3. stackit
  4. API Docs
  5. Telemetrylink
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

    TelemetryLink 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_telemetrylink" "link" {
      resource_type           = "project"
      resource_id             = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      region                  = "eu01"
      display_name            = "telemetrylink-example"
      access_token_wo         = "eyJxxx"
      access_token_wo_version = 1
      telemetry_router_id     = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    }
    
    # access_token is kept for backwards compatibility, but access_token_wo (see above) should be preferred
    # since it is never persisted to the Terraform state.
    resource "stackit_telemetrylink" "link2" {
      resource_type       = "project"
      resource_id         = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      region              = "eu01"
      display_name        = "telemetrylink-example"
      description         = "telemetrylink description"
      access_token        = "eyJxxx"
      telemetry_router_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    }
    

    Create Telemetrylink Resource

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

    Constructor syntax

    new Telemetrylink(name: string, args: TelemetrylinkArgs, opts?: CustomResourceOptions);
    @overload
    def Telemetrylink(resource_name: str,
                      args: TelemetrylinkArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def Telemetrylink(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      display_name: Optional[str] = None,
                      resource_id: Optional[str] = None,
                      resource_type: Optional[str] = None,
                      telemetry_router_id: Optional[str] = None,
                      access_token: Optional[str] = None,
                      access_token_wo: Optional[str] = None,
                      access_token_wo_version: Optional[int] = None,
                      description: Optional[str] = None,
                      region: Optional[str] = None)
    func NewTelemetrylink(ctx *Context, name string, args TelemetrylinkArgs, opts ...ResourceOption) (*Telemetrylink, error)
    public Telemetrylink(string name, TelemetrylinkArgs args, CustomResourceOptions? opts = null)
    public Telemetrylink(String name, TelemetrylinkArgs args)
    public Telemetrylink(String name, TelemetrylinkArgs args, CustomResourceOptions options)
    
    type: stackit:Telemetrylink
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "stackit_telemetrylink" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TelemetrylinkArgs
    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 TelemetrylinkArgs
    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 TelemetrylinkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TelemetrylinkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TelemetrylinkArgs
    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 telemetrylinkResource = new Stackit.Telemetrylink("telemetrylinkResource", new()
    {
        DisplayName = "string",
        ResourceId = "string",
        ResourceType = "string",
        TelemetryRouterId = "string",
        AccessToken = "string",
        AccessTokenWo = "string",
        AccessTokenWoVersion = 0,
        Description = "string",
        Region = "string",
    });
    
    example, err := stackit.NewTelemetrylink(ctx, "telemetrylinkResource", &stackit.TelemetrylinkArgs{
    	DisplayName:          pulumi.String("string"),
    	ResourceId:           pulumi.String("string"),
    	ResourceType:         pulumi.String("string"),
    	TelemetryRouterId:    pulumi.String("string"),
    	AccessToken:          pulumi.String("string"),
    	AccessTokenWo:        pulumi.String("string"),
    	AccessTokenWoVersion: pulumi.Int(0),
    	Description:          pulumi.String("string"),
    	Region:               pulumi.String("string"),
    })
    
    resource "stackit_telemetrylink" "telemetrylinkResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name            = "string"
      resource_id             = "string"
      resource_type           = "string"
      telemetry_router_id     = "string"
      access_token            = "string"
      access_token_wo         = "string"
      access_token_wo_version = 0
      description             = "string"
      region                  = "string"
    }
    
    var telemetrylinkResource = new Telemetrylink("telemetrylinkResource", TelemetrylinkArgs.builder()
        .displayName("string")
        .resourceId("string")
        .resourceType("string")
        .telemetryRouterId("string")
        .accessToken("string")
        .accessTokenWo("string")
        .accessTokenWoVersion(0)
        .description("string")
        .region("string")
        .build());
    
    telemetrylink_resource = stackit.Telemetrylink("telemetrylinkResource",
        display_name="string",
        resource_id="string",
        resource_type="string",
        telemetry_router_id="string",
        access_token="string",
        access_token_wo="string",
        access_token_wo_version=0,
        description="string",
        region="string")
    
    const telemetrylinkResource = new stackit.Telemetrylink("telemetrylinkResource", {
        displayName: "string",
        resourceId: "string",
        resourceType: "string",
        telemetryRouterId: "string",
        accessToken: "string",
        accessTokenWo: "string",
        accessTokenWoVersion: 0,
        description: "string",
        region: "string",
    });
    
    type: stackit:Telemetrylink
    properties:
        accessToken: string
        accessTokenWo: string
        accessTokenWoVersion: 0
        description: string
        displayName: string
        region: string
        resourceId: string
        resourceType: string
        telemetryRouterId: string
    

    Telemetrylink 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 Telemetrylink resource accepts the following input properties:

    DisplayName string
    The displayed name of the Telemetry Link resource.
    ResourceId string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    ResourceType string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    TelemetryRouterId string
    The Telemetry Router ID.
    AccessToken string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    AccessTokenWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    AccessTokenWoVersion int
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    Description string
    The description of the Telemetry Link resource.
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    DisplayName string
    The displayed name of the Telemetry Link resource.
    ResourceId string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    ResourceType string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    TelemetryRouterId string
    The Telemetry Router ID.
    AccessToken string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    AccessTokenWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    AccessTokenWoVersion int
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    Description string
    The description of the Telemetry Link resource.
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    display_name string
    The displayed name of the Telemetry Link resource.
    resource_id string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resource_type string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    telemetry_router_id string
    The Telemetry Router ID.
    access_token string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    access_token_wo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    access_token_wo_version number
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    description string
    The description of the Telemetry Link resource.
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    displayName String
    The displayed name of the Telemetry Link resource.
    resourceId String
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resourceType String
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    telemetryRouterId String
    The Telemetry Router ID.
    accessToken String
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    accessTokenWo String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    accessTokenWoVersion Integer
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    description String
    The description of the Telemetry Link resource.
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    displayName string
    The displayed name of the Telemetry Link resource.
    resourceId string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resourceType string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    telemetryRouterId string
    The Telemetry Router ID.
    accessToken string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    accessTokenWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    accessTokenWoVersion number
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    description string
    The description of the Telemetry Link resource.
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    display_name str
    The displayed name of the Telemetry Link resource.
    resource_id str
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resource_type str
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    telemetry_router_id str
    The Telemetry Router ID.
    access_token str
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    access_token_wo str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    access_token_wo_version int
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    description str
    The description of the Telemetry Link resource.
    region str
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    displayName String
    The displayed name of the Telemetry Link resource.
    resourceId String
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resourceType String
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    telemetryRouterId String
    The Telemetry Router ID.
    accessToken String
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    accessTokenWo String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    accessTokenWoVersion Number
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    description String
    The description of the Telemetry Link resource.
    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 Telemetrylink resource produces the following output properties:

    CreateTime string
    The time the Telemetry Link was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    CreateTime string
    The time the Telemetry Link was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    create_time string
    The time the Telemetry Link was created.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    createTime String
    The time the Telemetry Link was created.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    createTime string
    The time the Telemetry Link was created.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    create_time str
    The time the Telemetry Link was created.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    createTime String
    The time the Telemetry Link was created.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    Look up Existing Telemetrylink Resource

    Get an existing Telemetrylink 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?: TelemetrylinkState, opts?: CustomResourceOptions): Telemetrylink
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_token: Optional[str] = None,
            access_token_wo: Optional[str] = None,
            access_token_wo_version: Optional[int] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            region: Optional[str] = None,
            resource_id: Optional[str] = None,
            resource_type: Optional[str] = None,
            status: Optional[str] = None,
            telemetry_router_id: Optional[str] = None) -> Telemetrylink
    func GetTelemetrylink(ctx *Context, name string, id IDInput, state *TelemetrylinkState, opts ...ResourceOption) (*Telemetrylink, error)
    public static Telemetrylink Get(string name, Input<string> id, TelemetrylinkState? state, CustomResourceOptions? opts = null)
    public static Telemetrylink get(String name, Output<String> id, TelemetrylinkState state, CustomResourceOptions options)
    resources:  _:    type: stackit:Telemetrylink    get:      id: ${id}
    import {
      to = stackit_telemetrylink.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:
    AccessToken string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    AccessTokenWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    AccessTokenWoVersion int
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    CreateTime string
    The time the Telemetry Link was created.
    Description string
    The description of the Telemetry Link resource.
    DisplayName string
    The displayed name of the Telemetry Link resource.
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    ResourceId string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    ResourceType string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    Status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    TelemetryRouterId string
    The Telemetry Router ID.
    AccessToken string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    AccessTokenWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    AccessTokenWoVersion int
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    CreateTime string
    The time the Telemetry Link was created.
    Description string
    The description of the Telemetry Link resource.
    DisplayName string
    The displayed name of the Telemetry Link resource.
    Region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    ResourceId string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    ResourceType string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    Status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    TelemetryRouterId string
    The Telemetry Router ID.
    access_token string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    access_token_wo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    access_token_wo_version number
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    create_time string
    The time the Telemetry Link was created.
    description string
    The description of the Telemetry Link resource.
    display_name string
    The displayed name of the Telemetry Link resource.
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    resource_id string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resource_type string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    telemetry_router_id string
    The Telemetry Router ID.
    accessToken String
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    accessTokenWo String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    accessTokenWoVersion Integer
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    createTime String
    The time the Telemetry Link was created.
    description String
    The description of the Telemetry Link resource.
    displayName String
    The displayed name of the Telemetry Link resource.
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    resourceId String
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resourceType String
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    status String
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    telemetryRouterId String
    The Telemetry Router ID.
    accessToken string
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    accessTokenWo string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    accessTokenWoVersion number
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    createTime string
    The time the Telemetry Link was created.
    description string
    The description of the Telemetry Link resource.
    displayName string
    The displayed name of the Telemetry Link resource.
    region string
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    resourceId string
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resourceType string
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    status string
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    telemetryRouterId string
    The Telemetry Router ID.
    access_token str
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    access_token_wo str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    access_token_wo_version int
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    create_time str
    The time the Telemetry Link was created.
    description str
    The description of the Telemetry Link resource.
    display_name str
    The displayed name of the Telemetry Link resource.
    region str
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    resource_id str
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resource_type str
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    status str
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    telemetry_router_id str
    The Telemetry Router ID.
    accessToken String
    The access token of the Telemetry Router instance. Write-only argument accessTokenWo should be preferred.
    accessTokenWo String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. The access token of the Telemetry Router instance. Write-only - never stored in state and never returned by the API. To rotate the token, update this value AND increment accessTokenWoVersion. Changing this field alone will NOT trigger an update.
    accessTokenWoVersion Number
    User-managed rotation counter for accessTokenWo. Must be incremented every time accessTokenWo is changed. Terraform diffs this field to detect token rotations - changing accessTokenWo alone will NOT trigger an update because it is write-only and never stored in state.
    createTime String
    The time the Telemetry Link was created.
    description String
    The description of the Telemetry Link resource.
    displayName String
    The displayed name of the Telemetry Link resource.
    region String
    STACKIT region name the resource is located in. If not defined, the provider region is used.
    resourceId String
    STACKIT project ID, folder ID, or organization ID associated with the Telemetry Link resource.
    resourceType String
    The resource type of the TelemetryLink resource, possible values: Possible values are: organization, folder, project.
    status String
    The status of the TelemetryLink, possible values: Possible values are: active, inactive, failed, reconciling, deleting.

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

    telemetryRouterId String
    The Telemetry Router ID.

    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 TelemetryLink
    import {
      to = stackit_telemetrylink.import-example
      id = "${var.resource_type},${var.resource_id},${var.region}"
    }
    

    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