For the complete documentation index, see llms.txt. For a full content snapshot, see llms-full.txt. Append .md to any kestra.io/docs/* URL for plain Markdown.

Terraform Data Source: kestra_worker_group

Use this data source to access information about an existing Kestra Worker Group.

Example usage

data "kestra_worker_group" "example" {
group_id = "gpu-workers"
}

Schema

Required

  • group_id (String) The worker group identifier.

Read-Only

  • description (String) The worker group description.
  • id (String) The worker group id.
  • name (String) The worker group display name.
  • subscriptions (List of Object) The Worker Queue subscriptions of the worker group: worker_queue_id (default for the global default queue), reserved_percent (-1 means no reservation), and mode (STRICT or ELASTIC). (see below for nested schema)

Nested Schema for subscriptions

Read-Only:

  • mode (String)
  • reserved_percent (Number)
  • worker_queue_id (String)

Was this page helpful?