Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Grafana Cloud Enterprise Open source

Use Terraform to provision alerting resources

Use Terraform’s Grafana Provider to manage your alerting resources and provision them into your Grafana system. Terraform provider support for Grafana Alerting makes it easy to create, manage, and maintain your entire Grafana Alerting stack as code.

Refer to Grafana Provider documentation for more examples and information on Terraform Alerting schemas.

Complete the following tasks to create and manage your alerting resources using Terraform.

  1. Create an API key for provisioning.

  2. Configure the Terraform provider.

  3. Define your alerting resources in Terraform. Export alerting resources in Terraform format, or implement the Terraform Alerting schemas.

  4. Run terraform apply to provision your alerting resources.

Note

  • By default, you cannot edit resources provisioned from Terraform from the UI. This ensures that your alerting stack always stays in sync with your code. To change the default behaviour, refer to Edit provisioned resources in the Grafana UI.

  • Before you begin, ensure you have the Grafana Terraform Provider 1.27.0 or higher, and are using Grafana 9.1 or higher.

Create an API key for provisioning

You can create a service account token to authenticate Terraform with Grafana. Most existing tooling using API keys should automatically work with the new Grafana Alerting support.

There are also dedicated RBAC roles for alerting provisioning. This lets you easily authenticate as a service account with the minimum permissions needed to provision your Alerting infrastructure.

To create an API key for provisioning, complete the following steps.

  1. Create a new service account.
  2. Assign the role or permission to access the Alerting provisioning API.
  3. Create a new service account token.
  4. Name and save the token for use in Terraform.

Alternatively, you can use basic authentication. To view all the supported authentication formats, see here.

Configure the Terraform provider

Grafana Alerting support is included as part of the Grafana Terraform provider.

The following is an example you can use to configure the Terraform provider.

HCL
terraform {
    required_providers {
        grafana = {
            source = "grafana/grafana"
            version = ">= 1.28.2"
        }
    }
}

provider "grafana" {
    url = <YOUR_GRAFANA_URL>
    auth = <YOUR_GRAFANA_API_KEY>
}

Import contact points and templates

Contact points connect an alerting stack to the outside world. They tell Grafana how to connect to your external systems and where to deliver notifications.

To provision contact points and templates, refer to the grafana_contact_point schema and grafana_message_template schema, and complete the following steps.

  1. Copy this code block into a .tf file on your local machine.

    This example creates a contact point that sends alert notifications to Slack.

    HCL
    resource "grafana_contact_point" "my_slack_contact_point" {
        name = "Send to My Slack Channel"
    
        slack {
            url = <YOUR_SLACK_WEBHOOK_URL>
            text = <<EOT
    {{ len .Alerts.Firing }} alerts are firing!
    
    Alert summaries:
    {{ range .Alerts.Firing }}
    {{ template "Alert Instance Template" . }}
    {{ end }}
    EOT
        }
    }

    You can create multiple external integrations in a single contact point. Notifications routed to this contact point will be sent to all integrations. This example shows multiple integrations in the same Terraform resource.

    resource "grafana_contact_point" "my_multi_contact_point" {
        name = "Send to Many Places"
    
        slack {
            url = "webhook1"
            ...
        }
        slack {
            url = "webhook2"
            ...
        }
        teams {
            ...
        }
        email {
            ...
        }
    }
  2. Enter text for your notification in the text field.

    The text field supports Go-style templating. This enables you to manage your Grafana Alerting notification templates directly in Terraform.

  3. Run the command terraform apply.

  4. Go to the Grafana UI and check the details of your contact point.

  5. Click Test to verify that the contact point works correctly.

Reuse templates

You can reuse the same templates across many contact points. In the example above, a shared template ie embedded using the statement {{ template “Alert Instance Template” . }}

This fragment can then be managed separately in Terraform:

HCL
resource "grafana_message_template" "my_alert_template" {
    name = "Alert Instance Template"

    template = <<EOT
{{ define "Alert Instance Template" }}
Firing: {{ .Labels.alertname }}
Silence: {{ .SilenceURL }}
{{ end }}
EOT
}

Import notification policies and routing

Notification policies tell Grafana how to route alert instances to your contact points. They connect firing alerts to your previously defined contact points using a system of labels and matchers.

To provision notification policies and routing, refer to the grafana_notification_policy schema, and complete the following steps.

Warning

Since the policy tree is a single resource, provisioning the grafana_notification_policy resource will overwrite a policy tree created through any other means.
  1. Copy this code block into a .tf file on your local machine.

    In this example, the alerts are grouped by alertname, which means that any notifications coming from alerts which share the same name, are grouped into the same Slack message. You can provide any set of label keys here, or you can use the special label "..." to route by all label keys, sending each alert in a separate notification.

    If you want to route specific notifications differently, you can add sub-policies. Sub-policies allow you to apply routing to different alerts based on label matching. In this example, we apply a mute timing to all alerts with the label a=b.

    HCL
    resource "grafana_notification_policy" "my_policy" {
        group_by = ["alertname"]
        contact_point = grafana_contact_point.my_slack_contact_point.name
    
        group_wait = "45s"
        group_interval = "6m"
        repeat_interval = "3h"
    
        policy {
            matcher {
                label = "a"
                match = "="
                value = "b"
            }
            group_by = ["..."]
            contact_point = grafana_contact_point.a_different_contact_point.name
            mute_timings = [grafana_mute_timing.my_mute_timing.name]
    
            policy {
                matcher {
                    label = "sublabel"
                    match = "="
                    value = "subvalue"
                }
                contact_point = grafana_contact_point.a_third_contact_point.name
                group_by = ["..."]
            }
        }
    }
  2. In the mute_timings field, link a mute timing to your notification policy.

  3. Run the command terraform apply.

  4. Go to the Grafana UI and check the details of your notification policy.

  5. Click Test to verify that the notification point is working correctly.

Import mute timings

Mute timings provide the ability to mute alert notifications for defined time periods.

To provision mute timings, refer to the grafana_mute_timing schema, and complete the following steps.

  1. Copy this code block into a .tf file on your local machine.

    In this example, alert notifications are muted on weekends.

    HCL
    resource "grafana_mute_timing" "my_mute_timing" {
        name = "My Mute Timing"
    
        intervals {
            times {
            start = "04:56"
            end = "14:17"
            }
            weekdays = ["saturday", "sunday", "tuesday:thursday"]
            months = ["january:march", "12"]
            years = ["2025:2027"]
        }
    }
  2. Run the command terraform apply.

  3. Go to the Grafana UI and check the details of your mute timing.

  4. Reference your newly created mute timing in a notification policy using the mute_timings field. This will apply your mute timing to some or all of your notifications.

  5. Click Test to verify that the mute timing is working correctly.

Import alert rules

Alert rules enable you to alert against any Grafana data source. This can be a data source that you already have configured, or you can define your data sources in Terraform alongside your alert rules.

To provision alert rules, refer to the grafana_rule_group schema, and complete the following steps.

  1. Create a data source to query and a folder to store your rules in.

    In this example, the TestData data source is used.

    Alerts can be defined against any backend datasource in Grafana.

    HCL
    resource "grafana_data_source" "testdata_datasource" {
        name = "TestData"
        type = "testdata"
    }
    
    resource "grafana_folder" "rule_folder" {
        title = "My Rule Folder"
    }
  2. Define an alert rule.

    For more information on alert rules, refer to how to create Grafana-managed alerts.

  3. Create a rule group containing one or more rules.

    In this example, the grafana_rule_group resource group is used.

    HCL
    resource "grafana_rule_group" "my_rule_group" {
        name = "My Alert Rules"
        folder_uid = grafana_folder.rule_folder.uid
        interval_seconds = 60
        org_id = 1
    
        rule {
            name = "My Random Walk Alert"
            condition = "C"
            for = "0s"
    
            // Query the datasource.
            data {
                ref_id = "A"
                relative_time_range {
                    from = 600
                    to = 0
                }
                datasource_uid = grafana_data_source.testdata_datasource.uid
                // `model` is a JSON blob that sends datasource-specific data.
                // It's different for every datasource. The alert's query is defined here.
                model = jsonencode({
                    intervalMs = 1000
                    maxDataPoints = 43200
                    refId = "A"
                })
            }
    
            // The query was configured to obtain data from the last 60 seconds. Let's alert on the average value of that series using a Reduce stage.
            data {
                datasource_uid = "__expr__"
                // You can also create a rule in the UI, then GET that rule to obtain the JSON.
                // This can be helpful when using more complex reduce expressions.
                model = <<EOT
    {"conditions":[{"evaluator":{"params":[0,0],"type":"gt"},"operator":{"type":"and"},"query":{"params":["A"]},"reducer":{"params":[],"type":"last"},"type":"avg"}],"datasource":{"name":"Expression","type":"__expr__","uid":"__expr__"},"expression":"A","hide":false,"intervalMs":1000,"maxDataPoints":43200,"reducer":"last","refId":"B","type":"reduce"}
    EOT
                ref_id = "B"
                relative_time_range {
                    from = 0
                    to = 0
                }
            }
    
            // Now, let's use a math expression as our threshold.
            // We want to alert when the value of stage "B" above exceeds 70.
            data {
                datasource_uid = "__expr__"
                ref_id = "C"
                relative_time_range {
                    from = 0
                    to = 0
                }
                model = jsonencode({
                    expression = "$B > 70"
                    type = "math"
                    refId = "C"
                })
            }
        }
    }
  4. Run the command terraform apply.

  5. Go to the Grafana UI and check your alert rule.

You can see whether or not the alert rule is firing. You can also see a visualization of each of the alert rule’s query stages

When the alert fires, Grafana routes a notification through the policy you defined.

For example, if you chose Slack as a contact point, Grafana’s embedded Alertmanager automatically posts a message to Slack.

Edit provisioned resources in the Grafana UI

By default, you cannot edit resources provisioned via Terraform in Grafana. To enable editing these resources in the Grafana UI, use the disable_provenance attribute on alerting resources:

HCL
provider "grafana" {
  url  = "http://grafana.example.com/"
  auth = var.grafana_auth
}

resource "grafana_mute_timing" "mute_all" {
  name = "mute all"
  disable_provenance = true
  intervals {}
}

Useful Links:

Grafana Terraform Provider documentation