Dash0 acquires Polar Signals

Last updated: August 21, 2026

About the Dash0 Terraform Provider

Introduction to the Dash0 Terraform Provider — who it's for, the assets it manages, its design principles, and how it relates to the Dash0 Operator and CLI.

The Dash0 Terraform Provider manages Dash0 observability assets — dashboards, alerting rules, saved views, synthetic checks, notification channels, spam filters, and teams — as Terraform resources. It is published on the Terraform and OpenTofu registries.

Managed assets

Each Dash0 asset kind is exposed as a Terraform resource whose primary attribute is a YAML document using the same formats exported from the Dash0 UI or the Dash0 CLI.

Actions

Not everything worth doing from Terraform is an asset to reconcile. Actions are point-in-time operations that hold no state, run only when invoked, and are available from Terraform 1.14 onward.

The following actions allow you to send telemetry to Dash0 about changes you enact via Terraform:

Both require the otlp_url provider attribute, which addresses the Dash0 OTLP ingress endpoint rather than the API. Attach an action to a resource with a lifecycle action_trigger block, or invoke it on its own with terraform apply -invoke:

terraform
1234567891011121314151617181920
action "dash0_deployment_event" "release" {
config {
service_name = "checkout-api"
service_version = var.image_tag
deployment_environment_name = "production"
deployment_status = "succeeded"
dataset = "production"
}
}
resource "kubernetes_deployment" "checkout_api" {
# ... deployment configuration ...
lifecycle {
action_trigger {
events = [after_create, after_update]
actions = [action.dash0_deployment_event.release]
}
}
}

See dash0_deployment_event and dash0_log_event for the full schema, more action_trigger patterns, and the required provider setup.

Authentication

The provider accepts credentials from three sources, checked in order:

  1. Environment variables (DASH0_API_URL, DASH0_AUTH_TOKEN).
  2. Provider-block attributes (url, auth_token).
  3. A named Dash0 CLI profile — including OAuth-enabled profiles created with dash0 auth login, which the provider refreshes automatically before every request.

See Configuration for the full provider block schema, the supported environment variables, and end-to-end examples for each authentication source.

  • The Dash0 Operator for Kubernetes manages the same assets as PersesDashboard, PrometheusRule, and Dash0-specific custom resources — the right choice for GitOps flows already anchored on kubectl apply and ArgoCD or Flux.
  • The Dash0 CLI scripts the same operations for one-off migrations, batch deployments, or shell-driven automation.
  • See About Managing as Code for a side-by-side of when to pick which.

Next steps

  • Quickstart — a five-minute walkthrough that declares the provider, authenticates, and applies your first dash0_check_rule.
  • Configuration — the full provider block schema and environment-variable reference.
  • Resource reference — the sibling pages under Resources document the schema, example usage, and import syntax of each resource type.
  • AWS integration via CloudFormation — deploy the Dash0 AWS integration alongside your Terraform-managed Dash0 assets.
  • Provider sourcegithub.com/dash0hq/terraform-provider-dash0 for issues, changelog, and contributions.