grafana_synthetic_monitoring_probe (Resource)

Besides the public probes run by Grafana Labs, you can also install your own private probes. These are only accessible to you and only write data to your Grafana Cloud account. Private probes are instances of the open source Grafana Synthetic Monitoring Agent.

Example Usage

resource "grafana_synthetic_monitoring_probe" "main" {
  name      = "Mount Everest"
  latitude  = 27.98606
  longitude = 86.92262
  region    = "APAC"
  labels = {
    type = "mountain"
  }
}

Schema

Required

Optional

Read-Only

Import

Import is supported using the following syntax:

terraform import grafana_synthetic_monitoring_probe.name "{{ id }}"
terraform import grafana_synthetic_monitoring_probe.name "{{ id }}:{{ authToken }}"