Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.33 KB

File metadata and controls

48 lines (37 loc) · 1.33 KB
page_title stackit_intake_runner Resource - stackit
subcategory
description Manages STACKIT Intake Runner.

stackit_intake_runner (Resource)

Manages STACKIT Intake Runner.

Example Usage

resource "stackit_intake_runner" "example" {
  project_id            = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  name                  = "example-runner"
  region                = "eu01"
  description           = "An example runner for STACKIT Intake"
  max_message_size_kib  = 1024
  max_messages_per_hour = 1000
  labels = {
    "env" = "development"
  }
}

Schema

Required

  • max_message_size_kib (Number) The maximum message size in KiB.
  • max_messages_per_hour (Number) The maximum number of messages per hour.
  • name (String) The name of the runner.
  • project_id (String) STACKIT Project ID to which the runner is associated.

Optional

  • description (String) The description of the runner.
  • labels (Map of String) User-defined labels.
  • region (String) The resource region. If not defined, the provider region is used.

Read-Only

  • id (String) Terraform's internal resource identifier. It is structured as "project_id,region,runner_id".
  • runner_id (String) The runner ID.